Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
24 | 2 | public function __construct( |
|
25 | ContainerInterface $container, |
||
26 | string $serviceId, |
||
27 | string $name, |
||
28 | array $definition = [], |
||
29 | string $description = null, |
||
30 | string $help = null |
||
31 | ) { |
||
32 | 2 | parent::__construct($name); |
|
33 | |||
34 | 2 | $this->container = $container; |
|
35 | 2 | $this->serviceId = $serviceId; |
|
36 | |||
37 | 2 | $this->setDefinition($definition); |
|
38 | 2 | $this->setDescription($description); |
|
39 | 2 | $this->setHelp($help); |
|
40 | 2 | } |
|
41 | |||
52 |