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/AbstractMeta.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Application\Entity;
4 4
 
5
-use Doctrine\ORM\Mapping as ORM;
6
-
7 5
 /**
8 6
  * Abstract Meta
9 7
  *
Please login to merge, or discard this patch.
src/Application/Entity/ProfileEntity.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -251,7 +251,7 @@
 block discarded – undo
251 251
 
252 252
     /*** Birthdate ***/
253 253
     /**
254
-     * @return string
254
+     * @return \DateTime
255 255
      */
256 256
     public function getBirthdate()
257 257
     {
Please login to merge, or discard this patch.
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.