Passed
Push — 4.x ( c37faa...bd875a )
by Doug
12:53
created
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/WestingSouthingPoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,6 +86,6 @@
 block discarded – undo
86 86
             }
87 87
         }
88 88
 
89
-        return '(' . implode(', ', $values) . ')';
89
+        return '('.implode(', ', $values).')';
90 90
     }
91 91
 }
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/EastingNorthingPoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,6 +87,6 @@
 block discarded – undo
87 87
             }
88 88
         }
89 89
 
90
-        return '(' . implode(', ', $values) . ')';
90
+        return '('.implode(', ', $values).')';
91 91
     }
92 92
 }
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
@@ -87,6 +87,6 @@
 block discarded – undo
87 87
             }
88 88
         }
89 89
 
90
-        return '(' . implode(', ', $values) . ')';
90
+        return '('.implode(', ', $values).')';
91 91
     }
92 92
 }
Please login to merge, or discard this patch.