| Conditions | 4 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public function report(Exception $e) |
||
| 35 | { |
||
| 36 | if (is_array(config('airbrake.ignore_environments')) && !in_array(app()->environment(), config('airbrake.ignore_environments')) && $this->handler->shouldReport($e)) { |
||
|
|
|||
| 37 | $this->app['Airbrake\Instance']->notify($e); |
||
| 38 | } |
||
| 39 | |||
| 40 | return $this->handler->report($e); |
||
| 41 | } |
||
| 42 | |||
| 69 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.