diff --git a/app/Containers/Container.php b/app/Containers/Container.php index 140fe2a..eda21f0 100644 --- a/app/Containers/Container.php +++ b/app/Containers/Container.php @@ -257,6 +257,7 @@ public function execute(TerminalService $terminal, array $commands, string $inpu $commands = array_merge($service_command, $commands); + dump($commands); return $terminal->execute($commands, $input); } @@ -277,7 +278,7 @@ public function run(TerminalService $terminal, array $commands, string $input = $service_command[] = $this->service_name; $commands = array_merge($service_command, $commands); - + dump($commands); return $terminal->execute($commands, $input); }