diff --git a/src/Elgentos/Masquerade/Console/RunCommand.php b/src/Elgentos/Masquerade/Console/RunCommand.php index bb5a03d..9c4bac9 100644 --- a/src/Elgentos/Masquerade/Console/RunCommand.php +++ b/src/Elgentos/Masquerade/Console/RunCommand.php @@ -125,7 +125,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int $startTime = new \DateTime(); foreach ($this->config as $groupName => $tables) { - if (!empty($this->group) && !in_array($groupName, $this->group)) { + if ((!empty($this->group) && !in_array($groupName, $this->group)) || empty($tables)) { continue; } foreach ($tables as $tableName => $table) {