Make Router::$routes public.

This commit is contained in:
Taylor Otwell 2011-07-27 13:16:13 -05:00
parent 60f69659ea
commit 45cc0f1715
1 changed files with 1 additions and 1 deletions

View File

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