Completed
Push — master ( 519791...2b7f2d )
by stéphane
02:16
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
 
43 43
         return $matchDate || $matchCanonical || $matchSpaced || $matchIso;
Please login to merge, or discard this patch.