1 | <?php |
||
10 | class OptimusServiceProvider extends ServiceProvider |
||
11 | { |
||
12 | /** |
||
13 | * Indicates if loading of the provider is deferred. |
||
14 | * |
||
15 | * @var bool |
||
16 | */ |
||
17 | protected $defer = false; |
||
18 | |||
19 | /** |
||
20 | * Bootstrap any application services. |
||
21 | * |
||
22 | * @return void |
||
23 | */ |
||
24 | public function boot() |
||
28 | |||
29 | /** |
||
30 | * Register `modelWithOptimusHashid` router macro. |
||
31 | * |
||
32 | * @return void |
||
33 | */ |
||
34 | protected function extendRouter() |
||
60 | |||
61 | /** |
||
62 | * Register the service provider. |
||
63 | * |
||
64 | * @return void |
||
65 | */ |
||
66 | public function register() |
||
80 | |||
81 | /** |
||
82 | * Get the services provided by the provider. |
||
83 | * |
||
84 | * @return array |
||
85 | */ |
||
86 | public function provides() |
||
90 | } |
||
91 |