| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | protected function checkControllMethod(string $controll) |
||
| 27 | { |
||
| 28 | $controllname = ucfirst(explode(':',$controll)[0]); |
||
| 29 | $method = explode(':',$controll)[1]; |
||
| 30 | if(!method_exists($controllname, $method)){ |
||
| 31 | throw new Exception("No method {$method} found for {$controllname}."); |
||
| 32 | } |
||
| 33 | return $this; |
||
| 34 | } |
||
| 36 | } |