2017-01-14 17:36:56 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of the NelmioApiDocBundle package.
|
|
|
|
*
|
|
|
|
* (c) Nelmio
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Nelmio\ApiDocBundle\ModelDescriber;
|
|
|
|
|
|
|
|
use Nelmio\ApiDocBundle\Model\Model;
|
2020-05-28 13:19:11 +02:00
|
|
|
use OpenApi\Annotations\Schema;
|
2017-01-14 17:36:56 +01:00
|
|
|
|
|
|
|
interface ModelDescriberInterface
|
|
|
|
{
|
|
|
|
public function describe(Model $model, Schema $schema);
|
|
|
|
|
2017-03-17 19:37:41 +01:00
|
|
|
public function supports(Model $model): bool;
|
2017-01-14 17:36:56 +01:00
|
|
|
}
|