| Conditions | 3 |
| Paths | 3 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 3.576 |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | 58 | public function __call($method, $args) |
|
| 44 | { |
||
| 45 | 58 | if (str_contains($method, ['Send', 'Url', 'Route', 'Action'])) { |
|
| 46 | 58 | return app(RouteSituations::class)->$method(...$args); |
|
| 47 | } elseif (str_contains($method, ['View'])) { |
||
| 48 | return app(ViewSituations::class)->$method(...$args); |
||
| 49 | } |
||
| 52 |