Completed
Pull Request — master (#67)
by Ross
02:01
created

TypehintMapping   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 3
lcom 0
cbo 1
dl 0
loc 12
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A isSupported() 0 4 2
A findCommandsForService() 0 4 1
1
<?php
2
declare(strict_types=1);
3
4
namespace League\Tactician\Bundle\DependencyInjection\HandlerMapping;
5
6
use Symfony\Component\DependencyInjection\Definition;
7
8
final class TypehintMapping extends TagBasedMapping
9
{
10
    public function isSupported(Definition $definition, array $tagAttributes): bool
11
    {
12
        return isset($tagAttributes['auto']) && $tagAttributes['auto'] === true;
13
    }
14
15
    public function findCommandsForService(Definition $definition, array $tagAttributes): array
16
    {
17
        return []; // TODO: reflection magic!
18
    }
19
}
20