Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
22 | 1463 | public function __construct(Registry $constructor) |
|
23 | { |
||
24 | 1463 | $constructor->set('binder', $this); |
|
25 | |||
26 | 1463 | $this->container = $constructor->get('container', ContainerInterface::class); |
|
27 | 1463 | $this->scope = $constructor->get('scope', Scope::class); |
|
28 | |||
29 | 1463 | parent::__construct($constructor->get('state', State::class)); |
|
30 | } |
||
56 |