@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | */ |
113 | 113 | private function setRepositoryPath($path) |
114 | 114 | { |
115 | - $this->gitPath = rtrim($path, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . '.git'; |
|
115 | + $this->gitPath = rtrim($path, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR.'.git'; |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | /** |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | } |
135 | 135 | |
136 | 136 | $version = trim($git->resultAsText()); |
137 | - $this->version = '0.0.0-0-' . $version; |
|
137 | + $this->version = '0.0.0-0-'.$version; |
|
138 | 138 | |
139 | 139 | if (strlen($version) > 7) { |
140 | 140 | $this->version = str_replace('v', '', $version); |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | if (strlen($versionBits[0])) { |
153 | 153 | $this->version = $versionBits[0]; |
154 | 154 | if (isset($versionBits[1])) { |
155 | - $this->version = $versionBits[0] . '.' . $versionBits[1]; |
|
155 | + $this->version = $versionBits[0].'.'.$versionBits[1]; |
|
156 | 156 | } |
157 | 157 | if (isset($versionBits[2])) { |
158 | 158 | $this->hash = $versionBits[2]; |