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