Passed
Push — master ( 10985a...23fe50 )
by Ondřej
02:30
created
src/Ivory/Value/TimestampBase.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
         $addYears = 0;
48 48
         $dateCreateInput = preg_replace_callback(
49 49
             '~\d{5,}(?=(?:-\d+-\d+|\d{4})(?:\s+|T)\d)~', // supports both dash-separated date/time parts and also the
50
-                                                         // form without dash separators
50
+                                                            // form without dash separators
51 51
             function ($y) use (&$addYears) {
52 52
                 $res = $y[0] % 10000;
53 53
                 $addYears = $y[0] - $res;
Please login to merge, or discard this patch.