14 lines
348 B
PHP
14 lines
348 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Nelmio\ApiDocBundle\RouteDescriber\RouteArgumentDescriber;
|
|
|
|
use OpenApi\Annotations as OA;
|
|
use Symfony\Component\HttpKernel\ControllerMetadata\ArgumentMetadata;
|
|
|
|
interface RouteArgumentDescriberInterface
|
|
{
|
|
public function describe(ArgumentMetadata $argumentMetadata, OA\Operation $operation): void;
|
|
}
|