Completed
Push — develop ( a16549...b4f423 )
by
unknown
15:42
created
module/Core/src/Core/Entity/AbstractLocation.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -90,14 +90,14 @@  discard block
 block discarded – undo
90 90
         
91 91
         $str = '';
92 92
         if ($street) { $str .= $street; if (!$number) { $str .= ', '; } }
93
-        if ($number) { $str .= ' ' . $number . ', '; }
94
-        if ($postalCode) { $str .= $postalCode . ' '; }
93
+        if ($number) { $str .= ' '.$number.', '; }
94
+        if ($postalCode) { $str .= $postalCode.' '; }
95 95
         if ($city) { $str .= $city; }
96
-        if ($region) { $str .= ', ' . $region; }
97
-        if ($country) { $str .= ', ' . $country; }
96
+        if ($region) { $str .= ', '.$region; }
97
+        if ($country) { $str .= ', '.$country; }
98 98
         if ($coords) {
99 99
             $coords = $coords->getCoordinates();
100
-            $str .= ' ( ' . join(', ', $coords) . ' )';
100
+            $str .= ' ( '.join(', ', $coords).' )';
101 101
         }
102 102
         
103 103
         return $str;
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
             if (!$value) { continue; }
139 139
 
140 140
             if ('coordinates' == $key) {
141
-                $class = '\\Geo\\Entity\\Geometry\\' . $value['type'];
141
+                $class = '\\Geo\\Entity\\Geometry\\'.$value['type'];
142 142
                 $value = new $class($value['coordinates']);
143 143
             }
144 144
 
Please login to merge, or discard this patch.