Browse Source

Force base error reporting level to include everything

Jordi Boggiano 9 years ago
parent
commit
618e7f98b2
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/Composer/Util/ErrorHandler.php

+ 1 - 0
src/Composer/Util/ErrorHandler.php

@@ -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;
     }
 }