Conditions | 3 |
Paths | 3 |
Total Lines | 16 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | public function report(Exception $exception) |
||
13 | { |
||
14 | if ($this->shouldReport($exception)) { |
||
|
|||
15 | $params = []; |
||
16 | if (Auth::check()) { |
||
17 | $params = [ |
||
18 | 'user' => [ |
||
19 | 'id' => Auth::user()->id, |
||
20 | 'email' => Auth::user()->email |
||
21 | ], |
||
22 | ]; |
||
23 | } |
||
24 | |||
25 | $this->sentryID = app('sentry')->captureException($exception, $params); |
||
26 | } |
||
27 | parent::report($exception); |
||
28 | } |
||
30 |
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.