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 ( af305e...38512a )
by Luis Ramón
17:41
created
src/AppBundle/Controller/AdminController.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
                 $this->getDoctrine()->getManager()->flush();
121 121
                 $this->addFlash('success', $this->get('translator')->trans('alert.deleted', [], 'department'));
122 122
             }
123
-            catch(\Exception $e) {
123
+            catch (\Exception $e) {
124 124
                 $this->addFlash('error', $this->get('translator')->trans('alert.not_deleted', [], 'department'));
125 125
             }
126 126
             return $this->redirectToRoute('admin_departments');
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -119,8 +119,7 @@
 block discarded – undo
119 119
             try {
120 120
                 $this->getDoctrine()->getManager()->flush();
121 121
                 $this->addFlash('success', $this->get('translator')->trans('alert.deleted', [], 'department'));
122
-            }
123
-            catch(\Exception $e) {
122
+            } catch(\Exception $e) {
124 123
                 $this->addFlash('error', $this->get('translator')->trans('alert.not_deleted', [], 'department'));
125 124
             }
126 125
             return $this->redirectToRoute('admin_departments');
Please login to merge, or discard this patch.
src/AppBundle/Form/Type/PersonType.php 1 patch
Unused Use Statements   -6 removed lines patch added patch discarded remove patch
@@ -24,14 +24,8 @@
 block discarded – undo
24 24
 use Symfony\Component\Form\AbstractType;
25 25
 use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
26 26
 use Symfony\Component\Form\Extension\Core\Type\EmailType;
27
-use Symfony\Component\Form\Extension\Core\Type\PasswordType;
28
-use Symfony\Component\Form\Extension\Core\Type\RepeatedType;
29
-use Symfony\Component\Form\Extension\Core\Type\SubmitType;
30 27
 use Symfony\Component\Form\FormBuilderInterface;
31 28
 use Symfony\Component\OptionsResolver\OptionsResolver;
32
-use Symfony\Component\Security\Core\Validator\Constraints\UserPassword;
33
-use Symfony\Component\Validator\Constraints\Length;
34
-use Symfony\Component\Validator\Constraints\NotBlank;
35 29
 
36 30
 class PersonType extends AbstractType
37 31
 {
Please login to merge, or discard this patch.