| 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 |
||
| 39 | public function handle() |
||
| 40 | { |
||
| 41 | $this->line('Showing all available backups'); |
||
| 42 | $this->line(''); |
||
| 43 | $this->line('Name Date Time'); |
||
| 44 | $this->line('-------------------------------------'); |
||
| 45 | $fileList = Storage::disk('backup')->files(); |
||
| 46 | foreach($fileList as $file) |
||
| 47 | { |
||
| 48 | if($file != '.gitignore') |
||
| 49 | { |
||
| 50 | $this->info($file); |
||
| 51 | } |
||
| 55 |