1
0
Fork 0

Force base error reporting level to include everything

pull/4834/head
Jordi Boggiano 2016-01-26 15:05:57 +00:00
parent 4e00635298
commit 618e7f98b2
1 changed files with 1 additions and 0 deletions

View File

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