Completed
Push — master ( bd54dd...fc75f5 )
by Bobby
01:48
created
src/Version.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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];
Please login to merge, or discard this patch.