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
Branch develop (137ee9)
by Borut
03:38 queued 32s
created
src/Application/Entity/UserEntity.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -680,7 +680,7 @@
 block discarded – undo
680 680
 
681 681
     /*** Roles ***/
682 682
     /**
683
-     * @return array
683
+     * @return string[]
684 684
      */
685 685
     public function getRoles()
686 686
     {
Please login to merge, or discard this patch.
src/Application/Form/Type/User/ResetPasswordType.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Application\Form\Type\User;
4 4
 
5 5
 use Symfony\Component\Form\AbstractType;
6
-use Symfony\Component\Form\FormInterface;
7 6
 use Symfony\Component\Form\FormBuilderInterface;
8 7
 use Symfony\Component\OptionsResolver\OptionsResolverInterface;
9 8
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
             'data_class' => 'Application\Entity\UserEntity',
50 50
             'csrf_protection' => true,
51 51
             'csrf_field_name' => 'csrf_token',
52
-            'validation_groups' => function ($action) {
52
+            'validation_groups' => function($action) {
53 53
                 if ($action == 'reset') {
54 54
                     return array('resetPasswordReset');
55 55
                 } else {
Please login to merge, or discard this patch.