Completed
Push — master ( 9afd96...42fd87 )
by Cheren
09:16
created
src/Helper/Manager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
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 {
Please login to merge, or discard this patch.
src/Cms.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,11 +68,11 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.