ClassNameMapping::findCommandsForService()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 6
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 3
crap 1
1
<?php
2
declare(strict_types=1);
3
4
namespace League\Tactician\Bundle\DependencyInjection\HandlerMapping;
5
6
use Symfony\Component\DependencyInjection\ContainerBuilder;
7
use Symfony\Component\DependencyInjection\Definition;
8
9
final class ClassNameMapping extends TagBasedMapping
10
{
11 48
    protected function isSupported(ContainerBuilder $container, Definition $definition, array $tagAttributes): bool
12
    {
13 48
        return isset($tagAttributes['command']) && class_exists($container->getParameterBag()->resolveValue($tagAttributes['command']));
14
    }
15
16 42
    protected function findCommandsForService(ContainerBuilder $container, Definition $definition, array $tagAttributes): array
17
    {
18
        return [
19 42
            $container->getParameterBag()->resolveValue($tagAttributes['command'])
20
        ];
21
    }
22
}
23