NelmioApiDocBundle/PropertyDescriber/PropertyDescriberInterface.php

29 lines
606 B
PHP
Raw Normal View History

2019-12-13 22:45:32 +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\PropertyDescriber;
use OpenApi\Annotations\Schema;
2019-12-13 22:48:28 +01:00
use Symfony\Component\PropertyInfo\Type;
2019-12-13 22:45:32 +01:00
interface PropertyDescriberInterface
{
/**
* @param Type[] $types
*/
public function describe(array $types, Schema $property, array $groups = null);
2019-12-13 22:45:32 +01:00
/**
* @param Type[] $types
*/
public function supports(array $types): bool;
2019-12-13 22:48:28 +01:00
}