/home/techb158/immovalet.com/platform/core/base/src/Commands
NameSizeModeActions
ClearLogCommand.php11080644editdlrm
InstallCommand.php12310644editdlrm
PublishAssetsCommand.php8050644editdlrm
Edit: /home/techb158/immovalet.com/platform/core/base/src/Commands/ClearLogCommand.php (1108B)
files = $files; } /** * Execute the console command. */ public function handle() { if ($this->files->isDirectory(storage_path('logs'))) { foreach ($this->files->allFiles(storage_path('logs')) as $file) { $this->files->delete($file->getPathname()); } } $this->info('Clear log files successfully!'); } }