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 — develop ( ee1b66...d8c12e )
by Borut
02:48
created
src/Application/Entity/UserEntity.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -678,7 +678,7 @@  discard block
 block discarded – undo
678 678
      */
679 679
     public function isCredentialsNonExpired()
680 680
     {
681
-        return ! $this->getExpired();
681
+        return !$this->getExpired();
682 682
     }
683 683
 
684 684
     /*** Roles ***/
@@ -772,7 +772,7 @@  discard block
 block discarded – undo
772 772
      */
773 773
     public function isEqualTo(AdvancedUserInterface $user)
774 774
     {
775
-        if (! $user instanceof AdvancedUserInterface) {
775
+        if (!$user instanceof AdvancedUserInterface) {
776 776
             return false;
777 777
         }
778 778
 
Please login to merge, or discard this patch.