From fb4ea18bbb4bce59e590390e0061100b7d5d9ac5 Mon Sep 17 00:00:00 2001 From: Benjamin Kott Date: Tue, 6 Dec 2022 13:54:55 +0100 Subject: [PATCH] [BUGFIX] Correct input option --- src/Command/Version/SetCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/Version/SetCommand.php b/src/Command/Version/SetCommand.php index adff895..4877651 100644 --- a/src/Command/Version/SetCommand.php +++ b/src/Command/Version/SetCommand.php @@ -30,7 +30,7 @@ protected function configure() $this->setDefinition( new InputDefinition([ new InputArgument('version', InputArgument::REQUIRED), - new InputOption('dev', InputOption::VALUE_NONE) + new InputOption('dev', null, InputOption::VALUE_NONE) ]) ); }