1 | <?php |
||
20 | class FilesystemServiceProvider extends BaseServiceProvider |
||
21 | { |
||
22 | /** |
||
23 | * Register Filesystem service. |
||
24 | * |
||
25 | * @return void |
||
26 | */ |
||
27 | 21 | public function register(): void |
|
39 | |||
40 | /** |
||
41 | * Returns the default application filesystems config. |
||
42 | * |
||
43 | * We it simple we use the `local` driver. |
||
44 | * |
||
45 | * @return array |
||
46 | */ |
||
47 | 21 | protected function getDefaultConfig(): array |
|
59 | } |
||
60 |