@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | */ |
| 115 | 115 | private function setRepositoryPath($path) |
| 116 | 116 | { |
| 117 | - $this->git_path = rtrim($path, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . '.git'; |
|
| 117 | + $this->git_path = rtrim($path, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR.'.git'; |
|
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | /** |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | if (strlen($version) > 7) { |
| 135 | 135 | $this->version = str_replace('v', '', $version); |
| 136 | 136 | } else { |
| 137 | - $this->version = '0.0.0-0-' . $version; |
|
| 137 | + $this->version = '0.0.0-0-'.$version; |
|
| 138 | 138 | } |
| 139 | 139 | } catch (\Ballen\Executioner\Exceptions\ExecutionException $exception) { |
| 140 | 140 | |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | $version_bits = explode('-', $this->version); |
| 152 | 152 | if (strlen($version_bits[0])) { |
| 153 | 153 | if (isset($version_bits[1])) { |
| 154 | - $this->version = $version_bits[0] . '.' . $version_bits[1]; |
|
| 154 | + $this->version = $version_bits[0].'.'.$version_bits[1]; |
|
| 155 | 155 | } else { |
| 156 | 156 | $this->version = $version_bits[0]; |
| 157 | 157 | } |