Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | public function render($request, Throwable $e): Response|JsonResponse|RedirectResponse|\Symfony\Component\HttpFoundation\Response |
||
15 | { |
||
16 | if ($e instanceof NotFoundHttpException) { |
||
17 | return redirect('https://cslant.com/not-found', 301); |
||
18 | } |
||
19 | |||
20 | return parent::render($request, $e); |
||
21 | } |
||
23 |