Completed
Push — master ( 0922b8...e7e157 )
by Bobby
11:01
created
src/Version.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
      */
114 114
     private function setRepositoryPath($path)
115 115
     {
116
-        $this->gitPath = rtrim($path, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . '.git';
116
+        $this->gitPath = rtrim($path, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR.'.git';
117 117
     }
118 118
 
119 119
     /**
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
             if (strlen($version) > 7) {
134 134
                 $this->version = str_replace('v', '', $version);
135 135
             } else {
136
-                $this->version = '0.0.0-0-' . $version;
136
+                $this->version = '0.0.0-0-'.$version;
137 137
             }
138 138
         } catch (\Ballen\Executioner\Exceptions\ExecutionException $exception) {
139 139
             
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
         $version_bits = explode('-', $this->version);
151 151
         if (strlen($version_bits[0])) {
152 152
             if (isset($version_bits[1])) {
153
-                $this->version = $version_bits[0] . '.' . $version_bits[1];
153
+                $this->version = $version_bits[0].'.'.$version_bits[1];
154 154
             } else {
155 155
                 $this->version = $version_bits[0];
156 156
             }
Please login to merge, or discard this patch.