@@ -201,15 +201,15 @@ |
||
201 | 201 | $version = $this->getMajor(); |
202 | 202 | |
203 | 203 | if ($this->getMinor() !== null) { |
204 | - $version .= '.' . $this->getMinor(); |
|
204 | + $version .= '.'.$this->getMinor(); |
|
205 | 205 | } |
206 | 206 | |
207 | 207 | if ($this->getPatch() !== null) { |
208 | - $version .= '.' . $this->getPatch(); |
|
208 | + $version .= '.'.$this->getPatch(); |
|
209 | 209 | } |
210 | 210 | |
211 | 211 | if ($this->getAlias() !== null) { |
212 | - $version = $this->getAlias() . ' - ' . $version; |
|
212 | + $version = $this->getAlias().' - '.$version; |
|
213 | 213 | } |
214 | 214 | |
215 | 215 | $this->complete = $version; |