/**
  * Registers Honeybadger as the global error and exception handler. Any
  * uncaught exceptions and errors will be sent to Honeybadger by default.
  *
  * @return  void
  */
 public static function handle_errors()
 {
     Error::register_handler();
     Exception::register_handler();
 }