Browse Source

Make Router::$routes public.

Taylor Otwell 13 years ago
parent
commit
45cc0f1715
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/router.php

+ 1 - 1
system/router.php

@@ -7,7 +7,7 @@ class Router {
 	 *
 	 * @var array
 	 */
-	private static $routes = array();
+	public static $routes = array();
 
 	/**
 	 * Simulate a request to a given route. Useful for implementing HMVC.