Completed
Branch feature/copyOverExistingFiles (d55e2a)
by Jimmy
03:37
created
src/Version.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     public function __construct($file = null)
80 80
     {
81 81
         $this->version_file = $file
82
-            ? : base_path('VERSION');
82
+            ?: base_path('VERSION');
83 83
 
84 84
         $this->parseVersionFile();
85 85
 
@@ -104,11 +104,11 @@  discard block
 block discarded – undo
104 104
         $this->semver = $this->version;
105 105
 
106 106
         if ($this->pre_release) {
107
-            $this->semver .= '-' . $this->pre_release;
107
+            $this->semver .= '-'.$this->pre_release;
108 108
         }
109 109
 
110 110
         if ($this->meta) {
111
-            $this->semver .= '+' . $this->meta;
111
+            $this->semver .= '+'.$this->meta;
112 112
         }
113 113
     }
114 114
 
Please login to merge, or discard this patch.