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

public static method

Resets the Router to its default state, unloading all routes.

Source

	public static function reset() {
		static::$_configurations = [];
		static::$_scope = false;
		if (isset(static::$_scopes)) {
			static::$_scopes->reset();
		}
	}