| 1 | <?php |
||
| 8 | class MoipServiceProvider extends ServiceProvider |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Indicates if loading of the provider is deferred. |
||
| 12 | * |
||
| 13 | * @var bool |
||
| 14 | */ |
||
| 15 | protected $defer = true; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Bootstrap the application events. |
||
| 19 | */ |
||
| 20 | public function boot() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Register the service provider. |
||
| 35 | */ |
||
| 36 | public function register() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Get the services provided by the provider. |
||
| 43 | * |
||
| 44 | * @return array |
||
| 45 | */ |
||
| 46 | public function provides() |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @return bool |
||
| 53 | */ |
||
| 54 | private function isLumen() |
||
| 58 | } |
||
| 59 |
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.