| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class ShipController extends Controller |
||
| 12 | { |
||
| 13 | use HelperTrait; |
||
| 14 | |||
| 15 | public function generalPreCall() |
||
| 16 | { |
||
| 17 | if (Rudra::config()->get("environment") === "development") { |
||
| 18 | Rudra::get("debugbar")['time']->stopMeasure('routing'); |
||
| 19 | data([ |
||
| 20 | "debugbar" => Rudra::get("debugbar")->getJavascriptRenderer(), |
||
| 21 | ]); |
||
| 22 | } |
||
| 23 | } |
||
| 24 | |||
| 25 | public function eventRegistration() |
||
| 28 | } |
||
| 29 | } |
||
| 30 |