Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
15 | abstract class AbstractHandler |
||
16 | { |
||
17 | /** |
||
18 | * This method may seem useless but is actually very useful to mock the loop. |
||
19 | */ |
||
20 | protected function loop(): bool |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * This method may seem useless but is actually very useful to mock exits. |
||
27 | */ |
||
28 | protected function exit(): bool |
||
33 |
In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.