1 | <?php |
||
25 | class Handler extends ExceptionHandler |
||
26 | { |
||
27 | /** |
||
28 | * Список исключений, которые являются частью нормальной работы приложения |
||
29 | * и которые не надо как-то обрабатывать. Например, "ошибка 404" и прочие. |
||
30 | * @var array |
||
31 | */ |
||
32 | protected $dontReport = [ |
||
33 | \Illuminate\Auth\AuthenticationException::class, |
||
34 | \Illuminate\Auth\Access\AuthorizationException::class, |
||
35 | \Symfony\Component\HttpKernel\Exception\HttpException::class, |
||
36 | \Illuminate\Database\Eloquent\ModelNotFoundException::class, |
||
37 | \Illuminate\Session\TokenMismatchException::class, |
||
38 | \Illuminate\Validation\ValidationException::class, |
||
39 | ]; |
||
40 | |||
41 | /** |
||
42 | * Метод, куда прилетают все наши исключения для обработки. |
||
43 | * Отличное место для отправки оных в Sentry, Bugsnag, и проч. |
||
44 | * @param \Exception $exception |
||
45 | * @throws \Exception |
||
46 | */ |
||
47 | public function report(\Exception $exception): void |
||
55 | |||
56 | /** |
||
57 | * Отображение наших необработанных ошибок. |
||
58 | * @param \Illuminate\Http\Request $request |
||
59 | * @param \Exception $exception |
||
60 | * @return string|\Symfony\Component\HttpFoundation\Response |
||
61 | * @throws \Throwable |
||
62 | * @throws \InvalidArgumentException |
||
63 | */ |
||
64 | public function render($request, \Exception $exception) |
||
83 | |||
84 | /** |
||
85 | * @param HttpException $exception |
||
86 | * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View |
||
87 | */ |
||
88 | private function getErrorView(HttpException $exception) |
||
96 | |||
97 | /** |
||
98 | * Преобразовываем ошибки аутентификации в разлогинивающий ответ. |
||
99 | * @param \Illuminate\Http\Request $request |
||
100 | * @param \Illuminate\Auth\AuthenticationException $exception |
||
101 | * @return Response|RedirectResponse |
||
102 | */ |
||
103 | protected function unauthenticated($request, AuthenticationException $exception) |
||
112 | } |
||
113 |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: