Conditions | 2 |
Paths | 2 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | protected function getDisk(): Filesystem |
||
38 | { |
||
39 | if (! config('export.disk')) { |
||
40 | config([ |
||
41 | 'filesystems.disks.laravel_export' => [ |
||
42 | 'driver' => 'local', |
||
43 | 'root' => base_path('dist'), |
||
44 | ], |
||
45 | ]); |
||
46 | |||
47 | return Storage::disk('laravel_export'); |
||
48 | } |
||
49 | |||
50 | return Storage::disk(config('export.disk')); |
||
51 | } |
||
52 | } |
||
53 |