1 | <?php namespace Ntholenaar\LaravelMultiSafepayClient\Providers; |
||
6 | class MultiSafepayClientServiceProvider extends ServiceProvider |
||
7 | { |
||
8 | /** |
||
9 | * Indicates if loading of the provider is deferred. |
||
10 | * |
||
11 | * @var bool |
||
12 | */ |
||
13 | protected $defer = true; |
||
14 | |||
15 | /** |
||
16 | * Bootstrap the application events. |
||
17 | * |
||
18 | * @return void |
||
19 | */ |
||
20 | public function boot() |
||
28 | |||
29 | /** |
||
30 | * Register the service provider. |
||
31 | * |
||
32 | * @return void |
||
33 | */ |
||
34 | public function register() |
||
54 | |||
55 | /** |
||
56 | * Get the services provided by the provider. |
||
57 | * |
||
58 | * @return array |
||
59 | */ |
||
60 | public function provides() |
||
64 | } |
||
65 |