Completed
Push — master ( d38a64...a65b20 )
by stéphane
03:22
created
yaml/Regex.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         $matchSpaced    = preg_match($spaced, $v);
38 38
         $matchIso       = preg_match($iso8601, $v);
39 39
         if (is_bool($matchDate) || is_bool($matchCanonical) || is_bool($matchSpaced) || is_bool($matchIso))
40
-          throw new \Exception("Regex date error");
40
+            throw new \Exception("Regex date error");
41 41
 
42 42
         return $matchDate || $matchCanonical || $matchSpaced || $matchIso;
43 43
     }
Please login to merge, or discard this patch.