We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f956559 commit 9866471Copy full SHA for 9866471
tests/ErrorHandlerTest.php
@@ -595,7 +595,7 @@ public function testThrowErrorException()
595
$trace = $e->getTrace();
596
self::assertSame($errorVals['file'], $trace[1]['file']);
597
self::assertSame($backtraceLine, $trace[1]['line']);
598
- PHP_VERSION_ID >= 70000 && PHP_VERSION_ID < 80300
+ PHP_VERSION_ID >= 70000
599
? self::assertSame('bdk\\ErrorHandlerTests\\ErrorHandlerTest->raiseError', $trace[1]['function'])
600
: self::assertSame('bdk\\ErrorHandlerTests\\TestBase->raiseError', $trace[1]['function']);
601
self::assertSame(__CLASS__ . '->' . __FUNCTION__, $trace[2]['function']);
0 commit comments