Skip to content

Commit 73529f3

Browse files
committed
Add PHP 8.2 to the test matrix
1 parent fc6bc45 commit 73529f3

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/qa.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
QA: 1
2323

2424
- PHP_IMAGE: php:8.1-cli
25+
- PHP_IMAGE: php:8.2-cli
2526

2627
runs-on: ${{ matrix.operating-system }}
2728
steps:

tests/Unit/PhpUnitCompat.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ trait PhpUnitCompat
2121
*/
2222
public function expectExceptionMessageMatches(string $regularExpression) : void
2323
{
24-
is_callable('parent::expectExceptionMessageMatches')
24+
is_callable(parent::class.'::expectExceptionMessageMatches')
2525
? parent::expectExceptionMessageMatches(...func_get_args())
2626
: parent::expectExceptionMessageRegExp(...func_get_args());
2727
}

0 commit comments

Comments
 (0)