Skip to content

Commit

Permalink
fix: missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
ga-devfront committed Oct 25, 2024
1 parent 349e60c commit ee87a87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/Parameters/UpgradeConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ee87a87

Please sign in to comment.