KnpMenuBuilderPass   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 3
eloc 8
c 1
b 0
f 1
dl 0
loc 16
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A process() 0 14 3
1
<?php
2
3
/**
4
 * (c) FSi sp. z o.o. <[email protected]>
5
 *
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 */
9
10
declare(strict_types=1);
11
12
namespace FSi\Bundle\AdminBundle\DependencyInjection\Compiler;
13
14
use Symfony\Component\DependencyInjection\ContainerBuilder;
15
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
16
17
class KnpMenuBuilderPass implements CompilerPassInterface
18
{
19
    public function process(ContainerBuilder $container): void
20
    {
21
        if (!$container->hasDefinition('admin.menu.knp.decorator.chain')) {
22
            return;
23
        }
24
25
        $decoratorServices = $container->findTaggedServiceIds('admin.menu.knp_decorator');
26
27
        $decorators = [];
28
        foreach (array_keys($decoratorServices) as $id) {
29
            $decorators[] = $container->findDefinition($id);
30
        }
31
32
        $container->findDefinition('admin.menu.knp.decorator.chain')->replaceArgument(0, $decorators);
33
    }
34
}
35