REBELinBLUE\Deployer\Console\Commands\ResetApp::clearLogs PHP Метод

clearLogs() защищенный Метод

Removes the log files.
protected clearLogs ( )
    protected function clearLogs()
    {
        $this->info('Removing log files');
        $this->line('');
        foreach (glob(storage_path('logs/') . '*.log*') as $file) {
            unlink($file);
        }
    }