From f67720e4ef7156024fabf96015a77bffb2b23c75 Mon Sep 17 00:00:00 2001 From: Dane Powell Date: Tue, 19 Nov 2024 08:49:52 -0800 Subject: [PATCH] kill mutant --- src/Command/Api/ApiCommandHelper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/Api/ApiCommandHelper.php b/src/Command/Api/ApiCommandHelper.php index f1c4f3d1f..72312291f 100644 --- a/src/Command/Api/ApiCommandHelper.php +++ b/src/Command/Api/ApiCommandHelper.php @@ -101,7 +101,7 @@ private function addApiCommandParameters(array $schema, array $acquiaCloudSpec, } // Add --task-wait parameter for responses with notifications. - if (array_key_exists('responses', $schema) && array_key_exists(202, $schema['responses'])) { + if (array_key_exists(202, $schema['responses'])) { $inputDefinition[] = new InputOption('task-wait', null, InputOption::VALUE_NONE, 'Wait for this task to complete'); }