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() |
||
50 | |||
51 | /** |
||
52 | * Get the services provided by the provider. |
||
53 | * |
||
54 | * @return string[] |
||
55 | */ |
||
56 | public function provides() |
||
64 | } |
||
65 |