1 | <?php |
||
16 | class PayantServiceProvider extends ServiceProvider |
||
17 | { |
||
18 | |||
19 | /* |
||
20 | * Indicates if loading of the provider is deferred. |
||
21 | * |
||
22 | * @var bool |
||
23 | */ |
||
24 | protected $defer = false; |
||
25 | |||
26 | /** |
||
27 | * Publishes all the config file this package needs to function |
||
28 | */ |
||
29 | public function boot() |
||
37 | |||
38 | /** |
||
39 | * Register the application services. |
||
40 | */ |
||
41 | public function register() |
||
49 | |||
50 | /** |
||
51 | * Get the services provided by the provider |
||
52 | * @return array |
||
53 | */ |
||
54 | public function provides() |
||
58 | } |
||
59 |