NelmioApiDocBundle/Formatter/FormatterInterface.php
2012-04-12 01:28:56 +02:00

12 lines
208 B
PHP

<?php
namespace Nelmio\ApiBundle\Formatter;
use Nelmio\ApiBundle\Annotation\ApiDoc;
use Symfony\Component\Routing\Route;
interface FormatterInterface
{
function format(ApiDoc $apiDoc, Route $route);
}