Skip to content

Commit 6cd65a5

Browse files
committed
Apply fixes from StyleCI
1 parent 986a050 commit 6cd65a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Builder/LikeConditionBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ protected function parseOperator(LikeConditionInterface $expression): array
1515
{
1616
[$andor, $not, $operator] = parent::parseOperator($expression);
1717

18-
$operator = match($expression->getCaseSensitive()) {
18+
$operator = match ($expression->getCaseSensitive()) {
1919
true => 'LIKE',
2020
false => 'ILIKE',
2121
default => $operator,

0 commit comments

Comments
 (0)