Wipes out all configuration and resets the error handler to its initial state when loaded. Mainly used for testing.

Returns

void

Source

						public static function reset() {
		static::$_config = array();
		static::$_checks = array();
		static::$_handlers = array();
		static::$_exceptionHandler = null;
		static::__init();
	}