Completed
Push — master ( b33770...8b770c )
by Chris
07:17
created
php/hamle/Scope.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
       self::$namedScopes[$name] = $model;
28 28
     else
29 29
       self::$scopes[] = $model;
30
-    if(self::$scopeHook) {
30
+    if (self::$scopeHook) {
31 31
         (self::$scopeHook)($model);
32 32
     }
33 33
   }
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
       self::$namedScopes[$name]->rewind();
74 74
       return self::$namedScopes[$name];
75 75
     } else
76
-      if(self::$returnZeroOnNoScope)
76
+      if (self::$returnZeroOnNoScope)
77 77
         return new Model\Zero();
78 78
       throw new RunTime("Unable to find scope ($name)");
79 79
   }
Please login to merge, or discard this patch.