We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc6bc45 commit 73529f3Copy full SHA for 73529f3
2 files changed
.github/workflows/qa.yml
@@ -22,6 +22,7 @@ jobs:
22
QA: 1
23
24
- PHP_IMAGE: php:8.1-cli
25
+ - PHP_IMAGE: php:8.2-cli
26
27
runs-on: ${{ matrix.operating-system }}
28
steps:
tests/Unit/PhpUnitCompat.php
@@ -21,7 +21,7 @@ trait PhpUnitCompat
21
*/
public function expectExceptionMessageMatches(string $regularExpression) : void
{
- is_callable('parent::expectExceptionMessageMatches')
+ is_callable(parent::class.'::expectExceptionMessageMatches')
? parent::expectExceptionMessageMatches(...func_get_args())
: parent::expectExceptionMessageRegExp(...func_get_args());
}
0 commit comments