mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-04-04 14:23:33 +03:00
12 lines
268 B
PHP
12 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;
|
|
}
|