From 63bc36def3252af5c877e3cdf7b082467af623a5 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Mon, 30 Oct 2023 19:14:09 +0000 Subject: [PATCH] Apply fixes from StyleCI --- monorepo/DevTools/src/MonorepoReleaseCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monorepo/DevTools/src/MonorepoReleaseCommand.php b/monorepo/DevTools/src/MonorepoReleaseCommand.php index 9bb96e52b49..b08fdd1517b 100644 --- a/monorepo/DevTools/src/MonorepoReleaseCommand.php +++ b/monorepo/DevTools/src/MonorepoReleaseCommand.php @@ -119,7 +119,7 @@ protected function askForNewVersion(): void { $this->newVersionType = $this->choice('What type of release is this?', static::VERSION_TYPES, 1); - if ($this->newVersionType && ($this->currentVersion !== 'v' . HydeKernel::VERSION)) { + if ($this->newVersionType && ($this->currentVersion !== 'v'.HydeKernel::VERSION)) { $this->info('Updating base to use framework constant'); $this->currentVersion = 'v'.HydeKernel::VERSION; $this->currentVersionParts = explode('.', ltrim($this->currentVersion, 'v'));