@@ -106,7 +106,7 @@ |
||
106 | 106 | $id = (string) $id; |
107 | 107 | if (class_exists($className)) { |
108 | 108 | self::$_loaded[$id] = $className; |
109 | - $this[$id] = function () use ($className) { |
|
109 | + $this[$id] = function() use ($className) { |
|
110 | 110 | return new $className(); |
111 | 111 | }; |
112 | 112 | } else { |
@@ -68,11 +68,11 @@ |
||
68 | 68 | */ |
69 | 69 | protected function _initialize() |
70 | 70 | { |
71 | - $this['path'] = function () { |
|
71 | + $this['path'] = function() { |
|
72 | 72 | return $this->_initPaths(); |
73 | 73 | }; |
74 | 74 | |
75 | - $this['helper'] = function () { |
|
75 | + $this['helper'] = function() { |
|
76 | 76 | return new HelperManager(); |
77 | 77 | }; |
78 | 78 | } |