Skip to content

Commit e8fd778

Browse files
Merge branch '9.6' into 10.5
2 parents d6a81fa + 8d7e17e commit e8fd778

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"ext-mbstring": "*",
3030
"ext-xml": "*",
3131
"ext-xmlwriter": "*",
32-
"myclabs/deep-copy": "^1.13.0",
32+
"myclabs/deep-copy": "^1.13.1",
3333
"phar-io/manifest": "^2.0.4",
3434
"phar-io/version": "^3.2.1",
3535
"phpunit/php-code-coverage": "^10.1.16",

composer.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Runner/ErrorHandler.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
use const E_NOTICE;
1919
use const E_PARSE;
2020
use const E_RECOVERABLE_ERROR;
21-
use const E_STRICT;
2221
use const E_USER_DEPRECATED;
2322
use const E_USER_ERROR;
2423
use const E_USER_NOTICE;
@@ -69,7 +68,7 @@ public function __invoke(int $errorNumber, string $errorString, string $errorFil
6968
*
7069
* @see https://github.com/sebastianbergmann/phpunit/issues/5956
7170
*/
72-
if (defined('E_STRICT') && $errorNumber === @E_STRICT) {
71+
if (defined('E_STRICT') && $errorNumber === 2048) {
7372
$errorNumber = E_NOTICE;
7473
}
7574

0 commit comments

Comments
 (0)