Force base error reporting level to include everything

main
Jordi Boggiano 9 years ago
parent 4e00635298
commit 618e7f98b2

@ -73,6 +73,7 @@ class ErrorHandler
public static function register(IOInterface $io = null) public static function register(IOInterface $io = null)
{ {
set_error_handler(array(__CLASS__, 'handle')); set_error_handler(array(__CLASS__, 'handle'));
error_reporting(E_ALL | E_STRICT);
self::$io = $io; self::$io = $io;
} }
} }

Loading…
Cancel
Save