Completed
Push — master ( d48a1a...9c896e )
by Doug
03:14
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
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
         $minorLetterIndex = (5 * $minorSquaresNorth + $minorSquaresEast);
130 130
         $minorLetter = substr(self::GRID_LETTERS, $minorLetterIndex, 1);
131 131
 
132
-        return $majorLetter . $minorLetter . substr($easting, 1, $halfLength) . substr($northing, 1, $halfLength);
132
+        return $majorLetter.$minorLetter.substr($easting, 1, $halfLength).substr($northing, 1, $halfLength);
133 133
     }
134 134
 
135 135
     /**
Please login to merge, or discard this patch.