| 1 | <?php |
||
| 8 | class DirectoryCleanupCommand extends Command |
||
| 9 | { |
||
| 10 | protected $signature = 'clean:directories'; |
||
| 11 | |||
| 12 | protected $description = 'Clean up directories.'; |
||
| 13 | |||
| 14 | public function handle() |
||
| 29 | |||
| 30 | protected function deleteFilesIfOlderThanMinutes(string $directory, int $minutes) |
||
| 38 | |||
| 39 | protected function deleteEmptySubdirectories(string $directory) |
||
| 47 | } |
||
| 48 |