Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | public function handle() |
||
19 | { |
||
20 | $this->line('Showing all available backups'); |
||
21 | $this->line(''); |
||
22 | $this->line('Name Date Time'); |
||
23 | $this->line('-------------------------------------'); |
||
24 | $fileList = Storage::disk('backup')->files(); |
||
25 | foreach($fileList as $file) |
||
26 | { |
||
27 | if($file != '.gitignore') |
||
28 | { |
||
29 | $this->info($file); |
||
30 | } |
||
34 |