Skip to content

Commit 770f13f

Browse files
committed
Adjusted setup for newer PHP/Symfony version
1 parent cf3ee29 commit 770f13f

File tree

2 files changed

+7
-15
lines changed

2 files changed

+7
-15
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,7 @@ jobs:
4242
fail-fast: false
4343
matrix:
4444
php:
45-
- '7.4'
46-
- '8.0'
47-
- '8.4'
45+
- '8.3'
4846

4947
steps:
5048
- uses: actions/checkout@v4
@@ -94,9 +92,7 @@ jobs:
9492
strategy:
9593
matrix:
9694
php:
97-
- '7.4'
98-
- '8.0'
99-
- '8.4'
95+
- '8.3'
10096

10197
steps:
10298
- uses: actions/checkout@v4
@@ -156,9 +152,7 @@ jobs:
156152
strategy:
157153
matrix:
158154
php:
159-
- '7.4'
160-
- '8.0'
161-
- '8.4'
155+
- '8.3'
162156

163157
steps:
164158
- uses: actions/checkout@v4
@@ -214,9 +208,7 @@ jobs:
214208
fail-fast: false
215209
matrix:
216210
php:
217-
- '7.4'
218-
- '8.0'
219-
- '8.4'
211+
- '8.3'
220212

221213
steps:
222214
- uses: actions/checkout@v4

tests/bundle/Serializer/Normalizer/LockKeyNormalizerTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ public static function provideForTest(): iterable
8888
yield [
8989
$key,
9090
[
91-
'resource' => 'bar',
92-
'expiringTime' => $currentTime + 300,
91+
'expiringTime' => (float)($currentTime + 300),
9392
'state' => [],
93+
'resource' => 'bar',
9494
],
9595
];
9696

@@ -100,11 +100,11 @@ public static function provideForTest(): iterable
100100
yield [
101101
$key,
102102
[
103-
'resource' => 'foo',
104103
'expiringTime' => null,
105104
'state' => [
106105
'foo' => 'bar',
107106
],
107+
'resource' => 'foo',
108108
],
109109
];
110110
}

0 commit comments

Comments
 (0)