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 ( 11ccfa...a1e815 )
by
unknown
06:58
created
app/sog/Dashboard/Authentication/LdapUser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
         $this->attributes = $attributes;
56 56
         $this->roles = $roles;
57 57
         $this->memberships = $memberships;
58
-        $this->ownerships = array_map(function($group) {
58
+        $this->ownerships = array_map(function ($group) {
59 59
             return $group['ou'][0];
60 60
         }, $ownerships);
61 61
     }
Please login to merge, or discard this patch.
app/sog/Dashboard/LdapAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -353,7 +353,7 @@
 block discarded – undo
353 353
      */
354 354
     public function createGuest($name, $mail)
355 355
     {
356
-        $username = 'guest'.$this->generateUsername($name);
356
+        $username = 'guest' . $this->generateUsername($name);
357 357
         $dn = sprintf('uid=%s,ou=guests,ou=people,o=sog-de,dc=sog', $username);
358 358
         $info = [];
359 359
 
Please login to merge, or discard this patch.