| 1 | <?php |
||
| 19 | class CacheServiceProvider extends BaseServiceProvider |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * Register the Cache Service Provider. |
||
| 23 | * |
||
| 24 | * @return void |
||
| 25 | */ |
||
| 26 | 21 | public function register(): void |
|
| 34 | |||
| 35 | /** |
||
| 36 | * Returns the default application cache config. |
||
| 37 | * |
||
| 38 | * We keep it simple using the `array` driver. |
||
| 39 | * |
||
| 40 | * @return array |
||
| 41 | */ |
||
| 42 | 21 | protected function getDefaultConfig(): array |
|
| 53 | } |
||
| 54 |