mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-03 08:09:25 +03:00
90f835f1ef
* Allow the usage of `@SWG\Definition` on form types * Allow to not document form types fields * Reduce the number of changes
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?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\DependencyInjection\Compiler;
|
|
|
|
use Nelmio\ApiDocBundle\ModelDescriber\FormModelDescriber;
|
|
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
use Symfony\Component\DependencyInjection\Reference;
|
|
|
|
/**
|
|
* Enables the FormModelDescriber only if forms are enabled.
|
|
*
|
|
* @internal
|
|
*/
|
|
final class ConfigurationPass implements CompilerPassInterface
|
|
{
|
|
public function process(ContainerBuilder $container)
|
|
{
|
|
if ($container->hasDefinition('form.factory')) {
|
|
$container->register('nelmio_api_doc.model_describers.form', FormModelDescriber::class)
|
|
->setPublic(false)
|
|
->addArgument(new Reference('form.factory'))
|
|
->addArgument(new Reference('annotation_reader'))
|
|
->addTag('nelmio_api_doc.model_describer', ['priority' => 100]);
|
|
}
|
|
}
|
|
}
|