1 | <?php |
||
9 | class DirectoryCleanupCommand extends Command |
||
10 | { |
||
11 | /** |
||
12 | * The console command name. |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $signature = 'clean:directories'; |
||
17 | /** |
||
18 | * The console command description. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $description = 'Clean up directories.'; |
||
23 | |||
24 | /** @var \Illuminate\Filesystem\Filesystem */ |
||
25 | protected $filesystem; |
||
26 | |||
27 | public function __construct(Filesystem $filesystem) |
||
33 | |||
34 | public function handle() |
||
48 | |||
49 | protected function deleteFilesIfOlderThanMinutes(string $directory, int $minutes) |
||
67 | } |
||
68 |