| 1 | <?php |
||
| 18 | class RepositoryServiceProvider extends ServiceProvider |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * Indicates if loading of the provider is deferred. |
||
| 22 | * |
||
| 23 | * @var bool |
||
| 24 | */ |
||
| 25 | protected $defer = false; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return void |
||
| 29 | */ |
||
| 30 | public function boot() |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Register the service provider. |
||
| 37 | * |
||
| 38 | * @return void |
||
| 39 | */ |
||
| 40 | public function register() |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Get the services provided by the provider. |
||
| 47 | * |
||
| 48 | * @return array |
||
| 49 | */ |
||
| 50 | public function provides() |
||
| 54 | |||
| 55 | /** |
||
| 56 | * Publish resources. |
||
| 57 | * |
||
| 58 | * @return void |
||
| 59 | */ |
||
| 60 | private function publishResources() |
||
| 65 | } |
||
| 66 |
This check looks for function calls that miss required arguments.