Skip to content

Commit ebb2bd7

Browse files
Merge pull request #1478 from skilld-labs/1477-e_strict
Remove E_STRICT usage
2 parents 34d2051 + f2ea517 commit ebb2bd7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
],
2323

2424
"require": {
25-
"php": "8.2.* || 8.3.*",
25+
"php": "8.2.* || 8.3.* || 8.4.*",
2626
"phpspec/prophecy": "^1.16",
2727
"phpspec/php-diff": "^1.0",
2828
"sebastian/exporter": "^3.1 || ^4.0 || ^5.0 || ^6.0 || ^7.0",

src/PhpSpec/Console/ContainerAssembler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ private function setupRunner(IndexedServiceContainer $container): void
643643

644644
$container->define('runner.maintainers.errors', function (IndexedServiceContainer $c) {
645645
return new Runner\Maintainer\ErrorMaintainer(
646-
$c->getParam('runner.maintainers.errors.level', E_ALL ^ E_STRICT)
646+
$c->getParam('runner.maintainers.errors.level', E_ALL)
647647
);
648648
}, ['runner.maintainers']);
649649
$container->define('runner.maintainers.collaborators', function (IndexedServiceContainer $c) {

0 commit comments

Comments
 (0)