Completed
Pull Request — master (#2227)
by
unknown
09:01 queued 07:35
created

FOSRestBundle.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
/*
4
 * This file is part of the FOSRestBundle package.
5
 *
6
 * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace FOS\RestBundle;
13
14
use FOS\RestBundle\DependencyInjection\Compiler\ConfigurationCheckPass;
15
use FOS\RestBundle\DependencyInjection\Compiler\HandlerRegistryDecorationPass;
16
use FOS\RestBundle\DependencyInjection\Compiler\JMSFormErrorHandlerPass;
17
use FOS\RestBundle\DependencyInjection\Compiler\JMSHandlersPass;
18
use FOS\RestBundle\DependencyInjection\Compiler\FormatListenerRulesPass;
19
use FOS\RestBundle\DependencyInjection\Compiler\SerializerConfigurationPass;
20
use Symfony\Component\DependencyInjection\ContainerBuilder;
21
use Symfony\Component\DependencyInjection\Compiler\PassConfig;
22
use Symfony\Component\HttpKernel\Bundle\Bundle;
23
24
/**
25
 * @author Lukas Kahwe Smith <[email protected]>
26
 * @author Eriksen Costa <[email protected]>
27
 */
28
class FOSRestBundle extends Bundle
29
{
30
    const ZONE_ATTRIBUTE = '_fos_rest_zone';
31
32
    /**
33
     * {@inheritdoc}
34
     */
35 14
    public function build(ContainerBuilder $container)
36
    {
37 14
        $container->addCompilerPass(new SerializerConfigurationPass());
38 14
        $container->addCompilerPass(new ConfigurationCheckPass(), PassConfig::TYPE_BEFORE_OPTIMIZATION, -10);
39 14
        $container->addCompilerPass(new FormatListenerRulesPass());
40 14
        $container->addCompilerPass(new JMSFormErrorHandlerPass());
41 14
        $container->addCompilerPass(new JMSHandlersPass(), PassConfig::TYPE_BEFORE_REMOVING, -10);
42 14
        $container->addCompilerPass(new HandlerRegistryDecorationPass(), PassConfig::TYPE_AFTER_REMOVING);
0 ignored issues
show
Deprecated Code introduced by
The class FOS\RestBundle\Dependenc...rRegistryDecorationPass has been deprecated with message: since FOSRestBundle 3.1.

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
43 14
    }
44
}
45