GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 6fa8fc...9617f8 )
by Martin
06:06
created
src/Model/Version.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -201,15 +201,15 @@
 block discarded – undo
201 201
         $version = $this->getMajor();
202 202
 
203 203
         if ($this->getMinor() !== null) {
204
-            $version .= '.' . $this->getMinor();
204
+            $version .= '.'.$this->getMinor();
205 205
         }
206 206
 
207 207
         if ($this->getPatch() !== null) {
208
-            $version .= '.' . $this->getPatch();
208
+            $version .= '.'.$this->getPatch();
209 209
         }
210 210
 
211 211
         if ($this->getAlias() !== null) {
212
-            $version = $this->getAlias() . ' - ' . $version;
212
+            $version = $this->getAlias().' - '.$version;
213 213
         }
214 214
 
215 215
         $this->complete = $version;
Please login to merge, or discard this patch.