Skip to content

Commit 5811d80

Browse files
authored
Merge pull request #19 from nanasess/add-php8.2
Add PHP8.2
2 parents 05b60ea + 20afc63 commit 5811d80

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
os: [ ubuntu-latest ]
23-
php: [ '5.3', '5.4', '5.5', '5.6', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1' ]
23+
php: [ '5.3', '5.4', '5.5', '5.6', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
2424
dependencies: [ 'lowest', 'highest' ]
2525
steps:
2626
- uses: actions/checkout@v3

tests/_files/DataProviderDebugTest.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ public static function provider()
3232

3333
$storage = new \SplObjectStorage();
3434
$storage->attach($obj2);
35-
$storage->foo = $obj2;
35+
if (PHP_VERSION_ID < 80200) {
36+
$storage->foo = $obj2;
37+
}
3638

3739
return array(
3840
array(null, true, 1, 1.0),

0 commit comments

Comments
 (0)