AdminElementPass   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 4
eloc 10
c 1
b 0
f 0
dl 0
loc 18
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A process() 0 16 4
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
use Symfony\Component\DependencyInjection\Reference;
17
18
class AdminElementPass implements CompilerPassInterface
19
{
20
    public function process(ContainerBuilder $container): void
21
    {
22
        if (!$container->hasDefinition('admin.manager')
23
            || !$container->hasDefinition('admin.manager.visitor.element_collection')
24
        ) {
25
            return;
26
        }
27
28
        $elements = [];
29
        $elementServices = $container->findTaggedServiceIds('admin.element');
30
        foreach (array_keys($elementServices) as $id) {
31
            $elements[] = new Reference((string) $id);
32
        }
33
34
        $container->findDefinition('admin.manager.visitor.element_collection')
35
            ->replaceArgument(0, $elements);
36
    }
37
}
38