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