Completed
Push — master ( 05bbfb...6878dd )
by Bobby
11:34
created
src/Version.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
             }
Please login to merge, or discard this patch.