diff --git a/src/Core/BaseKernel.php b/src/Core/BaseKernel.php index 624719569f5..d3c0201b9f5 100644 --- a/src/Core/BaseKernel.php +++ b/src/Core/BaseKernel.php @@ -141,10 +141,10 @@ protected function bootPHP() { if ($this->getEnvironment() === BaseKernel::LIVE) { // limited to fatal errors and warnings in live mode - error_reporting(E_ALL & ~(E_DEPRECATED | E_STRICT | E_NOTICE)); + error_reporting(E_ALL & ~(E_DEPRECATED | E_NOTICE)); } else { // Report all errors in dev / test mode - error_reporting(E_ALL | E_STRICT); + error_reporting(E_ALL); } /** diff --git a/src/Dev/DebugView.php b/src/Dev/DebugView.php index c1953031abb..65f5f91cd64 100644 --- a/src/Dev/DebugView.php +++ b/src/Dev/DebugView.php @@ -102,10 +102,6 @@ class DebugView 'title' => 'User Warning', 'class' => 'warning' ], - E_STRICT => [ - 'title' => 'Strict Notice', - 'class' => 'notice' - ], E_RECOVERABLE_ERROR => [ 'title' => 'Recoverable Error', 'class' => 'warning'