mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 07:41:43 +03:00
12 lines
267 B
PHP
12 lines
267 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;
|
|
}
|