Passed
Push — 4.x ( 01787d...c37faa )
by Doug
12:53
created
src/UnitOfMeasure/Angle/ArcSecond.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
     public function getFormattedValue(): string
32 32
     {
33
-        return $this->angle . '″';
33
+        return $this->angle.'″';
34 34
     }
35 35
 
36 36
     public function getUnitName(): string
Please login to merge, or discard this patch.
src/UnitOfMeasure/Angle/Degree.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 
33 33
     public function getFormattedValue(): string
34 34
     {
35
-        return $this->angle . '°';
35
+        return $this->angle.'°';
36 36
     }
37 37
 
38 38
     public function getUnitName(): string
Please login to merge, or discard this patch.
src/Exception/UnknownEPSGCodeException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,6 +12,6 @@
 block discarded – undo
12 12
 {
13 13
     public function __construct(int $epsgCode)
14 14
     {
15
-        parent::__construct('Unknown EPSG code: ' . $epsgCode, $epsgCode);
15
+        parent::__construct('Unknown EPSG code: '.$epsgCode, $epsgCode);
16 16
     }
17 17
 }
Please login to merge, or discard this patch.