mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 15:51:48 +03:00
12 lines
208 B
PHP
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);
|
||
|
}
|