Test Failed
Push — master ( 4ae859...f36a08 )
by Sebastian
07:02 queued 12s
created
src/Util/PageHelper.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 
65 65
                 $digitFrom = $from[$i];
66 66
                 if ($digitTo !== $digitFrom) {
67
-                    $resTo = $digitTo . $resTo;
67
+                    $resTo = $digitTo.$resTo;
68 68
                 }
69 69
             }
70 70
             return $resTo;
@@ -77,9 +77,9 @@  discard block
 block discarded – undo
77 77
     {
78 78
 
79 79
         if ($from > 100 && ($from % 100 > 0) && intval(($from / 100), 10) === intval(($to / 100), 10)) {
80
-            return "" . ($to % 100);
80
+            return "".($to % 100);
81 81
         } else if ($from >= 10000) {
82
-            return "" . ($to % 1000);
82
+            return "".($to % 1000);
83 83
         }
84 84
         return $to;
85 85
     }
Please login to merge, or discard this patch.