Skip to content

Commit 04c4163

Browse files
committed
cs
1 parent a04379d commit 04c4163

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

spec/Fixture/config/autoload-for-enable-display-errors/error-hero-module.local.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
// excluded php errors
6161
'exclude-php-errors' => [
6262
\E_USER_DEPRECATED,
63-
E_NOTICE,
63+
\E_NOTICE,
6464
],
6565

6666
// show or not error

spec/Listener/MvcSpec.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@
397397
// null means use default mvc process
398398
expect($actual)->toBeNull();
399399

400-
expect(error_reporting())->toBe(E_ALL | E_STRICT);
400+
expect(error_reporting())->toBe(\E_ALL | \E_STRICT);
401401
expect(ini_get('display_errors'))->toBe("0");
402402

403403
});

spec/Middleware/ExpressiveSpec.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@
544544
// null means use default $handler->handle($request)
545545
expect($actual)->toBeNull();
546546

547-
expect(error_reporting())->toBe(E_ALL | E_STRICT);
547+
expect(error_reporting())->toBe(\E_ALL | \E_STRICT);
548548
expect(ini_get('display_errors'))->toBe("0");
549549

550550
});

0 commit comments

Comments
 (0)