Skip to content

Commit

Permalink
Merge pull request #19 from nanasess/add-php8.2
Browse files Browse the repository at this point in the history
Add PHP8.2
  • Loading branch information
nanasess authored Sep 29, 2022
2 parents 05b60ea + 20afc63 commit 5811d80
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
php: [ '5.3', '5.4', '5.5', '5.6', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1' ]
php: [ '5.3', '5.4', '5.5', '5.6', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
dependencies: [ 'lowest', 'highest' ]
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 3 additions & 1 deletion tests/_files/DataProviderDebugTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ public static function provider()

$storage = new \SplObjectStorage();
$storage->attach($obj2);
$storage->foo = $obj2;
if (PHP_VERSION_ID < 80200) {
$storage->foo = $obj2;
}

return array(
array(null, true, 1, 1.0),
Expand Down

0 comments on commit 5811d80

Please sign in to comment.