1 | <?php |
||
8 | class ServiceProvider extends \Spires\Core\ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Define config keys to make available with their defaults. |
||
12 | * |
||
13 | * @return array |
||
14 | */ |
||
15 | public function config() |
||
26 | |||
27 | /** |
||
28 | * Register the service provider. |
||
29 | * |
||
30 | * @return void |
||
31 | */ |
||
32 | public function register() |
||
52 | |||
53 | /** |
||
54 | * Boot the service provider. |
||
55 | * |
||
56 | * @return void |
||
57 | */ |
||
58 | public function boot() |
||
61 | |||
62 | /** |
||
63 | * Plugins provided. |
||
64 | * |
||
65 | * @return Plugin[] |
||
66 | */ |
||
67 | public function plugins() |
||
71 | } |
||
72 |