confirm('This command will truncate(empty) your tables. Should we continue?')) { $this->info('Truncating '.$this->argument('type').' table(s)'); if ($this->argument('type') === 'all') { FixturesFacade::down(); } elseif (\in_array($this->argument('type'), self::$allowedTables, false)) { FixturesFacade::down($this->argument('type')); } } else { $this->info('Command execution stopped'); } } }