1 | <?php |
||
7 | class DirectoryCleanupCommand extends Command |
||
8 | { |
||
9 | /** |
||
10 | * The console command name. |
||
11 | * |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $signature = 'clean:directories'; |
||
15 | /** |
||
16 | * The console command description. |
||
17 | * |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $description = 'Clean up directories.'; |
||
21 | |||
22 | public function handle() |
||
36 | |||
37 | protected function deleteFilesIfOlderThanMinutes(string $directory, int $minutes) |
||
45 | } |
||
46 |