1 | <?php |
||
9 | class DataTablesServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | /** |
||
12 | * Indicates if loading of the provider is deferred. |
||
13 | * |
||
14 | * @var bool |
||
15 | */ |
||
16 | protected $defer = false; |
||
17 | |||
18 | /** |
||
19 | * Bootstrap the application events. |
||
20 | * |
||
21 | * @return void |
||
22 | */ |
||
23 | public function boot() |
||
31 | |||
32 | /** |
||
33 | * Register the service provider. |
||
34 | * |
||
35 | * @return void |
||
36 | */ |
||
37 | public function register() |
||
54 | |||
55 | /** |
||
56 | * Check if app uses Lumen. |
||
57 | * |
||
58 | * @return bool |
||
59 | */ |
||
60 | protected function isLumen() |
||
64 | |||
65 | /** |
||
66 | * Get the services provided by the provider. |
||
67 | * |
||
68 | * @return string[] |
||
69 | */ |
||
70 | public function provides() |
||
78 | } |
||
79 |