1 | <?php |
||
9 | class SignereServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | use EventMap; |
||
12 | |||
13 | /** |
||
14 | * Bootstrap the application services. |
||
15 | * |
||
16 | * @return void |
||
17 | */ |
||
18 | 66 | public function boot() |
|
24 | |||
25 | /** |
||
26 | * Register the Signere job events. |
||
27 | * |
||
28 | * @return void |
||
29 | */ |
||
30 | protected function registerEvents() |
||
40 | |||
41 | /** |
||
42 | * Register the Signere routes. |
||
43 | * |
||
44 | * @return void |
||
45 | */ |
||
46 | 66 | protected function registerRoutes() |
|
56 | |||
57 | /** |
||
58 | * Define the asset publishing configuration. |
||
59 | * |
||
60 | * @return void |
||
61 | */ |
||
62 | 66 | public function defineAssetPublishing() |
|
68 | |||
69 | /** |
||
70 | * Register any application services. |
||
71 | * |
||
72 | * @return void |
||
73 | */ |
||
74 | 66 | public function register() |
|
85 | |||
86 | /** |
||
87 | * Setup the configuration for Signere. |
||
88 | * |
||
89 | * @return void |
||
90 | */ |
||
91 | 66 | protected function configure() |
|
98 | |||
99 | /** |
||
100 | * Registers the commands available with this package. |
||
101 | * |
||
102 | * @return void |
||
103 | */ |
||
104 | 66 | protected function registerCommands() |
|
111 | |||
112 | /** |
||
113 | * Register the bindings. |
||
114 | * |
||
115 | * @return void |
||
116 | */ |
||
117 | protected function registerBindings() |
||
152 | |||
153 | /** |
||
154 | * Setup the resource publishing groups for Signere. |
||
155 | * |
||
156 | * @return void |
||
157 | */ |
||
158 | 66 | protected function offerPublishing() |
|
166 | } |
||
167 |