@@ -90,14 +90,14 @@ discard block |
||
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 |
||
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 |