From 45cc0f171591bb03e53ca01ae36bbe6dc3aa6722 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 27 Jul 2011 13:16:13 -0500 Subject: [PATCH] Make Router::$routes public. --- system/router.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/router.php b/system/router.php index 71c09dee..731d64f0 100644 --- a/system/router.php +++ b/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.