1 | <?php |
||
12 | class ServiceProvider extends BaseServiceProvider |
||
13 | { |
||
14 | /** |
||
15 | * Register Scheduler service. |
||
16 | * |
||
17 | * @return void |
||
18 | */ |
||
19 | public function register(): void |
||
29 | |||
30 | /** |
||
31 | * Returns the default application cache config. |
||
32 | * |
||
33 | * In order to keep it simple we use the `array` driver. Feel free |
||
34 | * to use another driver, be sure to check the cache component |
||
35 | * documentation. |
||
36 | * |
||
37 | * @return array |
||
38 | */ |
||
39 | protected function getDefaultConfig(): array |
||
50 | } |
||
51 |