Skip to content

Commit

Permalink
[TASK] Make php-cs-fixer happy
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwemer committed Jan 26, 2024
1 parent 20a3e9d commit b3d75f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Domain/Repository/PublicationRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ protected function filterQuery(QueryInterface $query, Filter $filter)
}
if ($concat !== [] && $filter->getConcatination() === 'or') {
$query->matching($query->logicalOr(...$concat));
} else if ($concat !== []) {
} elseif ($concat !== []) {
$query->matching($query->logicalAnd(...$concat));
}
}
Expand Down

0 comments on commit b3d75f3

Please sign in to comment.