1 | <?php |
||
9 | class SignereServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | use EventMap; |
||
12 | |||
13 | /** |
||
14 | * Bootstrap the application services. |
||
15 | * |
||
16 | * @return void |
||
17 | */ |
||
18 | 61 | 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 | 61 | protected function registerRoutes() |
|
56 | |||
57 | /** |
||
58 | * Define the asset publishing configuration. |
||
59 | * |
||
60 | * @return void |
||
61 | */ |
||
62 | 61 | public function defineAssetPublishing() |
|
68 | |||
69 | /** |
||
70 | * Register any application services. |
||
71 | * |
||
72 | * @return void |
||
73 | */ |
||
74 | 61 | public function register() |
|
84 | |||
85 | /** |
||
86 | * Setup the configuration for Signere. |
||
87 | * |
||
88 | * @return void |
||
89 | */ |
||
90 | 61 | protected function configure() |
|
97 | |||
98 | /** |
||
99 | * Register the bindings. |
||
100 | * |
||
101 | * @return void |
||
102 | */ |
||
103 | protected function registerBindings() |
||
138 | |||
139 | /** |
||
140 | * Setup the resource publishing groups for Signere. |
||
141 | * |
||
142 | * @return void |
||
143 | */ |
||
144 | 61 | protected function offerPublishing() |
|
152 | } |
||
153 |