Completed
Push — actions ( d1eae5...abe859 )
by Doug
05:57 queued 04:33
created
src/IrishGridRef.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
         $minorLetterIndex = (5 * $minorSquaresNorth + $minorSquaresEast);
109 109
         $minorLetter = substr(self::GRID_LETTERS, $minorLetterIndex, 1);
110 110
 
111
-        return $minorLetter . substr($easting, 1, 3) . substr($northing, 1, 3);
111
+        return $minorLetter.substr($easting, 1, 3).substr($northing, 1, 3);
112 112
     }
113 113
 
114 114
     /**
Please login to merge, or discard this patch.
src/OSRef.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@
 block discarded – undo
172 172
         $minorLetter = substr(self::GRID_LETTERS, $minorLetterIndex, 1);
173 173
 
174 174
         return [
175
-            $majorLetter . $minorLetter,
175
+            $majorLetter.$minorLetter,
176 176
             substr($easting, 1, $halfLength),
177 177
             substr($northing, 1, $halfLength),
178 178
         ];
Please login to merge, or discard this patch.