Completed
Push — master ( a62919...f5e951 )
by Stephen
14:47 queued 07:23
created
src/Version.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -103,11 +103,11 @@
 block discarded – undo
103 103
         $this->semver = $this->version;
104 104
 
105 105
         if ($this->pre_release) {
106
-            $this->semver .= '-' . $this->pre_release;
106
+            $this->semver .= '-'.$this->pre_release;
107 107
         }
108 108
 
109 109
         if ($this->meta) {
110
-            $this->semver .= '+' . $this->meta;
110
+            $this->semver .= '+'.$this->meta;
111 111
         }
112 112
     }
113 113
 
Please login to merge, or discard this patch.