@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | public function __construct($file = null) |
| 80 | 80 | { |
| 81 | 81 | $this->version_file = $file |
| 82 | - ? : base_path('VERSION'); |
|
| 82 | + ?: base_path('VERSION'); |
|
| 83 | 83 | |
| 84 | 84 | $this->parseVersionFile(); |
| 85 | 85 | |
@@ -104,11 +104,11 @@ discard block |
||
| 104 | 104 | $this->semver = $this->version; |
| 105 | 105 | |
| 106 | 106 | if ($this->pre_release) { |
| 107 | - $this->semver .= '-' . $this->pre_release; |
|
| 107 | + $this->semver .= '-'.$this->pre_release; |
|
| 108 | 108 | } |
| 109 | 109 | |
| 110 | 110 | if ($this->meta) { |
| 111 | - $this->semver .= '+' . $this->meta; |
|
| 111 | + $this->semver .= '+'.$this->meta; |
|
| 112 | 112 | } |
| 113 | 113 | } |
| 114 | 114 | |