mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 15:51:48 +03:00
13 lines
268 B
PHP
13 lines
268 B
PHP
<?php
|
|
|
|
|
|
namespace Nelmio\ApiDocBundle\Parser;
|
|
|
|
use Symfony\Component\Form\FormConfigInterface;
|
|
use Symfony\Component\Form\FormTypeInterface;
|
|
|
|
interface FormInfoParser
|
|
{
|
|
public function parseFormType(FormTypeInterface $type, FormConfigInterface $config): ?array;
|
|
}
|