Passed
Push — 4.x ( 739b15...17e0c5 )
by Doug
04:36 queued 02:58
created
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.
src/GeographicPoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,6 +134,6 @@
 block discarded – undo
134 134
             }
135 135
         }
136 136
 
137
-        return '(' . implode(', ', $values) . ')';
137
+        return '('.implode(', ', $values).')';
138 138
     }
139 139
 }
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
@@ -46,12 +46,12 @@
 block discarded – undo
46 46
 
47 47
     public function getFormattedValue(): string
48 48
     {
49
-        return $this->change->getValue() . ' ' . $this->change->getUnitName() . ' per ' . $this->time->getUnitName();
49
+        return $this->change->getValue().' '.$this->change->getUnitName().' per '.$this->time->getUnitName();
50 50
     }
51 51
 
52 52
     public function getUnitName(): string
53 53
     {
54
-        return $this->change->getUnitName() . ' per ' . $this->time->getUnitName();
54
+        return $this->change->getUnitName().' per '.$this->time->getUnitName();
55 55
     }
56 56
 
57 57
     public function __toString(): string
Please login to merge, or discard this patch.
src/WestingSouthingPoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,6 +134,6 @@
 block discarded – undo
134 134
             }
135 135
         }
136 136
 
137
-        return '(' . implode(', ', $values) . ')';
137
+        return '('.implode(', ', $values).')';
138 138
     }
139 139
 }
Please login to merge, or discard this patch.
src/WestingNorthingPoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,6 +134,6 @@
 block discarded – undo
134 134
             }
135 135
         }
136 136
 
137
-        return '(' . implode(', ', $values) . ')';
137
+        return '('.implode(', ', $values).')';
138 138
     }
139 139
 }
Please login to merge, or discard this patch.
src/EastingNorthingPoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,6 +134,6 @@
 block discarded – undo
134 134
             }
135 135
         }
136 136
 
137
-        return '(' . implode(', ', $values) . ')';
137
+        return '('.implode(', ', $values).')';
138 138
     }
139 139
 }
Please login to merge, or discard this patch.