1 | <?php |
||
16 | class DatatablesServiceProvider extends ServiceProvider |
||
17 | { |
||
18 | /** |
||
19 | * Indicates if loading of the provider is deferred. |
||
20 | * |
||
21 | * @var bool |
||
22 | */ |
||
23 | protected $defer = false; |
||
24 | |||
25 | /** |
||
26 | * Bootstrap the application events. |
||
27 | * |
||
28 | * @return void |
||
29 | */ |
||
30 | public function boot() |
||
38 | |||
39 | /** |
||
40 | * Register the service provider. |
||
41 | * |
||
42 | * @return void |
||
43 | */ |
||
44 | public function register() |
||
73 | |||
74 | /** |
||
75 | * Check if app uses Lumen. |
||
76 | * |
||
77 | * @return bool |
||
78 | */ |
||
79 | protected function isLumen() |
||
83 | |||
84 | /** |
||
85 | * Create aliases for the dependency. |
||
86 | */ |
||
87 | protected function registerAliases() |
||
94 | |||
95 | /** |
||
96 | * Get the services provided by the provider. |
||
97 | * |
||
98 | * @return string[] |
||
99 | */ |
||
100 | public function provides() |
||
104 | } |
||
105 |