Skip to content

Commit 1728495

Browse files
committed
Merge branch 'master' of github.com:sweetrdf/termTemplates
2 parents 6881ee9 + 3aa873e commit 1728495

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
php: [8.1, 8.2, 8.3, 8.4]
10+
php: [8.1, 8.2, 8.3, 8.4, 8.5]
1111
steps:
1212
- uses: actions/checkout@v4
1313
- uses: shivammathur/setup-php@v2

src/termTemplates/NumericTemplate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public function __construct(float | null $value = null,
9494
return $termValue > $value;
9595
};
9696
break;
97-
case self::LOWER;
97+
case self::LOWER:
9898
$this->fn = function (float $termValue) use ($value): bool {
9999
return $termValue < $value;
100100
};

src/termTemplates/ValueTemplate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public function __construct(string | array | null $value = null,
106106
return $term->getValue() > $value;
107107
};
108108
break;
109-
case self::LOWER;
109+
case self::LOWER:
110110
$this->fn = function (TermInterface $term, string $value): bool {
111111
return $term->getValue() < $value;
112112
};

0 commit comments

Comments
 (0)