Make Router::$routes public.

This commit is contained in:
Taylor Otwell
2011-07-27 13:16:13 -05:00
parent 60f69659ea
commit 45cc0f1715

View File

@@ -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.