NelmioApiDocBundle/Extractor/Routing/RouteExtractorInterface.php
2016-06-30 23:30:37 +02:00

21 lines
468 B
PHP

<?php
/*
* This file is part of the ApiDocBundle package.
*
* (c) EXSyst
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace EXSyst\Bundle\ApiDocBundle\Extractor\Routing;
use gossi\swagger\Swagger;
use Symfony\Component\Routing\Route;
interface RouteExtractorInterface
{
public function extractIn(Swagger $api, Route $route, \ReflectionMethod $reflectionMethod);
}