NelmioApiDocBundle/Formatter/FormatterInterface.php

14 lines
252 B
PHP
Raw Normal View History

2012-04-12 01:28:36 +02:00
<?php
namespace Nelmio\ApiBundle\Formatter;
use Nelmio\ApiBundle\Annotation\ApiDoc;
use Symfony\Component\Routing\Route;
interface FormatterInterface
{
function format(array $collection);
function formatOne(ApiDoc $apiDoc, Route $route);
2012-04-12 01:28:36 +02:00
}