1 | <?php |
||
20 | class PhpBattleriteServiceProvider extends ServiceProvider |
||
21 | { |
||
22 | /** |
||
23 | * Indicates if loading of the provider is deferred. |
||
24 | * |
||
25 | * @var bool |
||
26 | */ |
||
27 | protected $defer = false; |
||
28 | |||
29 | /** |
||
30 | * Publish the Config file from the Package to the App directory. |
||
31 | * |
||
32 | * @return void |
||
33 | */ |
||
34 | public function boot() |
||
38 | |||
39 | /** |
||
40 | * Register the service provider. |
||
41 | * |
||
42 | * @return void |
||
43 | */ |
||
44 | public function register() |
||
56 | |||
57 | /** |
||
58 | * Binding app to Main class. |
||
59 | * |
||
60 | * @return void |
||
61 | */ |
||
62 | private function implementationBindings() |
||
68 | |||
69 | /** |
||
70 | * Publish the Config file from the Package to the App directory. |
||
71 | * |
||
72 | * @return void |
||
73 | */ |
||
74 | private function configPublisher() |
||
83 | |||
84 | /** |
||
85 | * Binding app to the Facede. |
||
86 | * |
||
87 | * @return void |
||
88 | */ |
||
89 | private function facadeBindings() |
||
100 | |||
101 | /** |
||
102 | * Get the services provided by the provider. |
||
103 | * |
||
104 | * @return array |
||
105 | */ |
||
106 | public function provides() |
||
110 | } |
||
111 |