Example #1
0
 /**
  * Resets the class to a first-load state. Mainly useful during testing.
  *
  * @return void
  */
 public static function reset()
 {
     self::$route_objects = array();
     self::$named_routes = array();
     self::$routes = array();
     self::$prefix = NULL;
     self::$pre_route_objects = array();
     self::$pattern_list = array();
     self::$filter_list = array();
 }