| Total Complexity | 5 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Coverage | 86.67% |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | final class RegisterTagMapPass implements CompilerPassInterface |
||
| 14 | { |
||
| 15 | private $service; |
||
| 16 | private $tag; |
||
| 17 | |||
| 18 | 12 | public function __construct(string $service, string $tag) |
|
| 19 | { |
||
| 20 | 12 | $this->service = $service; |
|
| 21 | 12 | $this->tag = $tag; |
|
| 22 | 12 | } |
|
| 23 | |||
| 24 | /** |
||
| 25 | * {@inheritdoc} |
||
| 26 | */ |
||
| 27 | 10 | public function process(ContainerBuilder $container) |
|
| 46 | 10 | } |
|
| 47 | } |
||
| 48 |