| Total Complexity | 6 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | trait ControllerTrait{ |
||
| 8 | |||
| 9 | protected function check_controllsettable(string $controll) |
||
| 10 | { |
||
| 11 | if(count(explode(':',$controll)) != 2){ |
||
| 12 | throw new Exception("Controller {$controll} badly set."); |
||
| 13 | } |
||
| 14 | } |
||
| 15 | |||
| 16 | protected function check_controllexist(string $controll) |
||
| 20 | } |
||
| 21 | } |
||
| 22 | |||
| 23 | protected function check_controllmethod(string $controll) |
||
| 27 | } |
||
| 28 | } |
||
| 30 | } |