| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class Handler extends ExceptionHandler |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * A list of the inputs that are never flashed for validation exceptions. |
||
| 12 | * |
||
| 13 | * @var array |
||
| 14 | */ |
||
| 15 | protected $dontFlash = [ |
||
| 16 | 'password', |
||
| 17 | 'password_confirmation', |
||
| 18 | ]; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Report or log an exception. |
||
| 22 | * |
||
| 23 | * @return void |
||
| 24 | */ |
||
| 25 | public function report(Throwable $exception) |
||
| 34 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.