info('Populating '.$this->argument('type').' table(s)'); if ($this->argument('type') === 'all') { FixturesFacade::up(); } elseif (\in_array($this->argument('type'), self::$allowedTables, false)) { FixturesFacade::up($this->argument('type')); } } }