Conditions | 3 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 3.576 |
Changes | 0 |
1 | <?php |
||
24 | 28 | public function __get(string $key) |
|
25 | { |
||
26 | 28 | if (is_null($this->arguments[$key]) && array_key_exists($key, $this->config)) { |
|
27 | $mutationType = $this->config[$key]->type; |
||
28 | |||
29 | $this->arguments[$key] = new $mutationType([], $this->config[$key]->children); |
||
30 | } |
||
31 | |||
32 | 28 | return $this->arguments[$key]; |
|
33 | } |
||
34 | |||
53 |