Skip to content

Commit 8d7e17e

Browse files
Merge branch '8.5' into 9.6
2 parents 758ba28 + dd5e896 commit 8d7e17e

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
@@ -30,7 +30,7 @@
3030
"ext-xml": "*",
3131
"ext-xmlwriter": "*",
3232
"doctrine/instantiator": "^1.5.0 || ^2",
33-
"myclabs/deep-copy": "^1.13.0",
33+
"myclabs/deep-copy": "^1.13.1",
3434
"phar-io/manifest": "^2.0.4",
3535
"phar-io/version": "^3.2.1",
3636
"phpunit/php-code-coverage": "^9.2.32",

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/Util/ErrorHandler.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
use const E_DEPRECATED;
1313
use const E_NOTICE;
14-
use const E_STRICT;
1514
use const E_USER_DEPRECATED;
1615
use const E_USER_NOTICE;
1716
use const E_USER_WARNING;
@@ -99,7 +98,7 @@ public function __invoke(int $errorNumber, string $errorString, string $errorFil
9998
*
10099
* @see https://github.com/sebastianbergmann/phpunit/issues/5956
101100
*/
102-
if (defined('E_STRICT') && $errorNumber === @E_STRICT) {
101+
if (defined('E_STRICT') && $errorNumber === 2048) {
103102
$errorNumber = E_NOTICE;
104103
}
105104

0 commit comments

Comments
 (0)