Skip to content

Commit

Permalink
style: improve coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinTheHood committed Dec 30, 2023
1 parent a9cab9e commit 37afafe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Classes/ModuleManager/ModuleManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,8 @@ public function updateWithoutDependencies(
if ($skipDependencyCheck === false) {
$systemSet = $this->systemSetFactory->getSystemSet();
$versionConstraint = '>' . $module->getVersion();
$combinationSatisfyerResult = $this->dependencyBuilder->satisfies($archiveName, $versionConstraint, $systemSet);
$combinationSatisfyerResult =
$this->dependencyBuilder->satisfies($archiveName, $versionConstraint, $systemSet);
if (
$combinationSatisfyerResult->result === CombinationSatisfyerResult::RESULT_COMBINATION_NOT_FOUND
|| !$combinationSatisfyerResult->foundCombination
Expand Down

0 comments on commit 37afafe

Please sign in to comment.