1 | <?php |
||
8 | class EmailValidatorServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | |||
11 | /** |
||
12 | * Indicates if loading of the provider is deferred. |
||
13 | * |
||
14 | * @var bool |
||
15 | */ |
||
16 | protected $defer = false; |
||
17 | |||
18 | /** |
||
19 | * Publishes all the config file this package needs to function |
||
20 | * @return void |
||
21 | */ |
||
22 | public function boot() |
||
30 | |||
31 | /** |
||
32 | * Register the application services |
||
33 | * @return void |
||
34 | */ |
||
35 | public function register() |
||
43 | |||
44 | /** |
||
45 | * Get the services provided by the provider |
||
46 | * @return array |
||
47 | */ |
||
48 | public function provides() |
||
52 | } |