From ee87a8795870f4c996b0b072b2d0417a617b1e18 Mon Sep 17 00:00:00 2001 From: Alexis Guyomar Date: Fri, 25 Oct 2024 10:19:31 +0200 Subject: [PATCH] fix: missing return --- classes/Parameters/UpgradeConfiguration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Parameters/UpgradeConfiguration.php b/classes/Parameters/UpgradeConfiguration.php index 5874a4f03..67bcfbcbf 100644 --- a/classes/Parameters/UpgradeConfiguration.php +++ b/classes/Parameters/UpgradeConfiguration.php @@ -90,7 +90,7 @@ public function getLocalChannelZip(): ?string public function getChannelZip(): ?string { if ($this->getChannel() === Upgrader::CHANNEL_LOCAL) { - $this->getLocalChannelZip(); + return $this->getLocalChannelZip(); } return self::ONLINE_CHANNEL_ZIP;