Browse Source

added reload function to loader everything function.

Taylor Otwell 13 years ago
parent
commit
e060c3d1da
1 changed files with 3 additions and 2 deletions
  1. 3 2
      system/routing/loader.php

+ 3 - 2
system/routing/loader.php

@@ -51,11 +51,12 @@ class Loader {
 	 * To improve performance, this operation will only be performed once. The routes
 	 * will be cached and returned on every subsequent call.
 	 *
+	 * @param  bool   $reload
 	 * @return array
 	 */
-	public static function everything()
+	public static function everything($reload = false)
 	{
-		if ( ! is_null(static::$routes)) return static::$routes;
+		if ( ! is_null(static::$routes) and ! $reload) return static::$routes;
 
 		$routes = require APP_PATH.'routes'.EXT;