| 1 | <?php  | 
            ||
| 13 | class MoipServiceProvider extends ServiceProvider  | 
            ||
| 14 | { | 
            ||
| 15 | /**  | 
            ||
| 16 | * Indicates if loading of the provider is deferred.  | 
            ||
| 17 | *  | 
            ||
| 18 | * @var bool  | 
            ||
| 19 | */  | 
            ||
| 20 | protected $defer = true;  | 
            ||
| 21 | |||
| 22 | /**  | 
            ||
| 23 | * Bootstrap the application events.  | 
            ||
| 24 | */  | 
            ||
| 25 | public function boot()  | 
            ||
| 29 | |||
| 30 | /**  | 
            ||
| 31 | * Register the service provider.  | 
            ||
| 32 | */  | 
            ||
| 33 | public function register()  | 
            ||
| 37 | |||
| 38 | /**  | 
            ||
| 39 | * Get the services provided by the provider.  | 
            ||
| 40 | *  | 
            ||
| 41 | * @return array  | 
            ||
| 42 | */  | 
            ||
| 43 | public function provides()  | 
            ||
| 47 | |||
| 48 | /**  | 
            ||
| 49 | * Publishes and Merge configs.  | 
            ||
| 50 | */  | 
            ||
| 51 | public function handleConfigs()  | 
            ||
| 63 | |||
| 64 | /**  | 
            ||
| 65 | * Checks if the application is Lumen.  | 
            ||
| 66 | *  | 
            ||
| 67 | * @return bool  | 
            ||
| 68 | */  | 
            ||
| 69 | private function isLumen()  | 
            ||
| 73 | }  | 
            ||
| 74 | 
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.