ClassNameMapping   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 3
lcom 0
cbo 3
dl 0
loc 14
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A isSupported() 0 4 2
A findCommandsForService() 0 6 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