Completed
Push — master ( 2fec7f...f11719 )
by Iman
02:20
created
src/Conditions/ConditionsFacade.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,9 +11,9 @@
 block discarded – undo
11 11
         if (! isset($this->methods[$method])) {
12 12
             throw new \BadMethodCallException($method.' does not exists as a Heyman condition');
13 13
         }
14
-       $condition = $this->methods[$method];
14
+        $condition = $this->methods[$method];
15 15
 
16
-       if (is_callable($condition)) {
16
+        if (is_callable($condition)) {
17 17
             return $condition(...$param);
18 18
         }
19 19
 
Please login to merge, or discard this patch.