/**
  * Register error handler
  *
  * @static
  */
 public static function register(IOInterface $io = null)
 {
     set_error_handler(array(__CLASS__, 'handle'));
     self::$io = $io;
 }
Exemple #2
0
 /**
  * Register error handler.
  *
  * @param IOInterface|null $io
  */
 public static function register(IOInterface $io = null)
 {
     set_error_handler(array(__CLASS__, 'handle'));
     error_reporting(E_ALL | E_STRICT);
     self::$io = $io;
 }