lithium\net\http\Media::reset()

public static method

Resets the Media class to its default state. Mainly used for ensuring a consistent state during testing.

Source

	public static function reset() {
		static::$_handlers = array();
		static::$_types = array();
		static::$_scope = false;
		if (isset(static::$_scopes)) {
			static::$_scopes->reset();
		}
	}