From 8c72b32f5e0bd7f9d0943d9f297b634feff8e4f1 Mon Sep 17 00:00:00 2001 From: Matthias Van Woensel <3532563+matthiaz@users.noreply.github.com> Date: Mon, 13 Jul 2026 13:24:36 +0200 Subject: [PATCH] fix: `id` is legacy, we use `environment` now. Else you get an error like: `The "id" argument does not exist.` --- legacy/src/Command/Environment/EnvironmentBranchCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/src/Command/Environment/EnvironmentBranchCommand.php b/legacy/src/Command/Environment/EnvironmentBranchCommand.php index 31dc4677c..285d3d6ca 100644 --- a/legacy/src/Command/Environment/EnvironmentBranchCommand.php +++ b/legacy/src/Command/Environment/EnvironmentBranchCommand.php @@ -113,7 +113,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int if ($checkout) { return $this->subCommandRunner->run( 'environment:checkout', - ['id' => $environment->id], + ['environment' => $environment->id], ); }