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