Passed
Push — 4.0.x ( 414ad0 )
by Doug
05:36
created
src/CoordinateSystem/Ellipsoidal.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -180,6 +180,6 @@
 block discarded – undo
180 180
 
181 181
     public static function getSupportedSRIDs(): array
182 182
     {
183
-        return array_map(function ($sridData) {return $sridData['name']; }, static::$sridData);
183
+        return array_map(function($sridData) {return $sridData['name']; }, static::$sridData);
184 184
     }
185 185
 }
Please login to merge, or discard this patch.
src/GeographicPoint.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
             }
173 173
         }
174 174
 
175
-        return '(' . implode(', ', $values) . ')';
175
+        return '('.implode(', ', $values).')';
176 176
     }
177 177
 
178 178
     /**
Please login to merge, or discard this patch.
src/Exception/UnknownSRIDException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,6 +14,6 @@
 block discarded – undo
14 14
 {
15 15
     public function __construct(string $srid)
16 16
     {
17
-        parent::__construct('Unknown SRID: ' . $srid);
17
+        parent::__construct('Unknown SRID: '.$srid);
18 18
     }
19 19
 }
Please login to merge, or discard this patch.
src/Exception/InvalidAxesException.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,10 +20,10 @@
 block discarded – undo
20 20
      */
21 21
     public function __construct(array $allowedAxes)
22 22
     {
23
-        $axisNames = array_map(static function ($allowedAxis) {
23
+        $axisNames = array_map(static function($allowedAxis) {
24 24
             return $allowedAxis->getName();
25 25
         }, $allowedAxes);
26 26
 
27
-        parent::__construct('This CRS has axes: ' . implode(', ', $axisNames));
27
+        parent::__construct('This CRS has axes: '.implode(', ', $axisNames));
28 28
     }
29 29
 }
Please login to merge, or discard this patch.
src/BritishNationalGridPoint.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.
src/UnitOfMeasure/Angle/Angle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -330,7 +330,7 @@
 block discarded – undo
330 330
 
331 331
     public static function getSupportedSRIDs(): array
332 332
     {
333
-        return array_map(function ($sridData) {return $sridData['name']; }, static::$sridData);
333
+        return array_map(function($sridData) {return $sridData['name']; }, static::$sridData);
334 334
     }
335 335
 
336 336
     public static function convert(self $angle, string $targetSRID): self
Please login to merge, or discard this patch.
src/UnitOfMeasure/Length/Length.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -602,7 +602,7 @@
 block discarded – undo
602 602
 
603 603
     public static function getSupportedSRIDs(): array
604 604
     {
605
-        return array_map(function ($sridData) {return $sridData['name']; }, static::$sridData);
605
+        return array_map(function($sridData) {return $sridData['name']; }, static::$sridData);
606 606
     }
607 607
 
608 608
     public static function convert(self $length, string $targetSRID): self
Please login to merge, or discard this patch.
src/UnitOfMeasure/Rate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
 
158 158
     public function getUnitName(): string
159 159
     {
160
-        return $this->change->getUnitName() . ' per ' . $this->time->getUnitName();
160
+        return $this->change->getUnitName().' per '.$this->time->getUnitName();
161 161
     }
162 162
 
163 163
     public function __toString(): string
@@ -199,6 +199,6 @@  discard block
 block discarded – undo
199 199
 
200 200
     public static function getSupportedSRIDs(): array
201 201
     {
202
-        return array_map(function ($sridData) {return $sridData['name']; }, static::$sridData);
202
+        return array_map(function($sridData) {return $sridData['name']; }, static::$sridData);
203 203
     }
204 204
 }
Please login to merge, or discard this patch.
src/UnitOfMeasure/Scale/Scale.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
 
101 101
     public static function getSupportedSRIDs(): array
102 102
     {
103
-        return array_map(function ($sridData) {return $sridData['name']; }, static::$sridData);
103
+        return array_map(function($sridData) {return $sridData['name']; }, static::$sridData);
104 104
     }
105 105
 
106 106
     public function __toString(): string
Please login to merge, or discard this patch.