1 | <?php namespace Padosoft\Laravel\Notification\Notifier; |
||
5 | class NotifierServiceProvider extends ServiceProvider { |
||
6 | |||
7 | /** |
||
8 | * Indicates if loading of the provider is deferred. |
||
9 | * |
||
10 | * @var bool |
||
11 | */ |
||
12 | protected $defer = false; |
||
13 | |||
14 | /** |
||
15 | * Bootstrap the application events. |
||
16 | * |
||
17 | * @return void |
||
18 | */ |
||
19 | public function boot() |
||
22 | |||
23 | /** |
||
24 | * Register the service provider. |
||
25 | * |
||
26 | * @return void |
||
27 | */ |
||
28 | public function register() |
||
34 | |||
35 | /** |
||
36 | * Get the services provided by the provider. |
||
37 | * |
||
38 | * @return array |
||
39 | */ |
||
40 | public function provides() |
||
44 | |||
45 | } |
||
46 | |||
47 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.