diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-04-23 17:58:16 +0200 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-04-23 17:58:16 +0200 |
commit | 48a7fbbeb53e82e9298036d40c42ec2564699ed0 (patch) | |
tree | 37d4695d18579ecae45b6c49c2719e87696bfc21 /system/core/Router.php | |
parent | c8a2a60c1075e5f725967962663127dad0f9e2e1 (diff) |
Use tabs to separate class properties
Diffstat (limited to 'system/core/Router.php')
-rwxr-xr-x | system/core/Router.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/system/core/Router.php b/system/core/Router.php index b5c200214..9314052fe 100755 --- a/system/core/Router.php +++ b/system/core/Router.php @@ -50,35 +50,35 @@ class CI_Router { * * @var array */ - public $routes = array(); + public $routes = array(); /** * List of error routes * * @var array */ - public $error_routes = array(); + public $error_routes = array(); /** * Current class name * * @var string */ - public $class = ''; + public $class = ''; /** * Current method name * * @var string */ - public $method = 'index'; + public $method = 'index'; /** * Sub-directory that contains the requested controller class * * @var string */ - public $directory = ''; + public $directory = ''; /** * Default controller (and method if specific) |