ValidationCompilerPass::process()   A
last analyzed

Complexity

Conditions 3
Paths 3

Size

Total Lines 16
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 3
eloc 8
nc 3
nop 1
dl 0
loc 16
rs 10
c 1
b 0
f 0
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\AdminSecurityBundle\DependencyInjection\Compiler;
13
14
use Symfony\Component\DependencyInjection\ContainerBuilder;
15
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
16
17
class ValidationCompilerPass implements CompilerPassInterface
18
{
19
    public function process(ContainerBuilder $container): void
20
    {
21
        if (!$container->hasParameter('admin_security.storage')) {
22
            return;
23
        }
24
25
        if (!$container->hasDefinition('validator.builder')) {
26
            return;
27
        }
28
29
        $storage = $container->getParameter('admin_security.storage');
30
31
        $validationFile = __DIR__ . '/../../Resources/config/storage-validation/' . $storage . '.xml';
32
33
        $container->getDefinition('validator.builder')
34
            ->addMethodCall('addXmlMapping', [$validationFile]);
35
    }
36
}
37