Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | 5 | public function __call($method, $parameters) |
|
13 | { |
||
14 | 5 | if (Str::startsWith($method, 'display')) { |
|
15 | 5 | $method = Str::camel(Str::after($method, 'display')); |
|
16 | |||
17 | 5 | if ($method === 'error') { |
|
18 | 3 | $this->exitCode = 1; |
|
19 | } |
||
20 | |||
21 | 5 | call_user_func_array([$this, $method], $parameters); |
|
22 | } |
||
33 |