NelmioApiDocBundle/Formatter/FormatterInterface.php

12 lines
208 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(ApiDoc $apiDoc, Route $route);
}