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 ( 57b2f6...3e832a )
by Luis Ramón
04:08
created
src/AppBundle/Form/Type/UserType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
         }
113 113
 
114 114
 
115
-        $builder->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) use ($options) {
115
+        $builder->addEventListener(FormEvents::PRE_SET_DATA, function(FormEvent $event) use ($options) {
116 116
             $builder = $event->getForm();
117 117
             /** @var User $data */
118 118
             $data = $event->getData();
Please login to merge, or discard this patch.
src/AppBundle/Service/SenecaAuthenticatorService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
     {
130 130
         $fieldsString = '';
131 131
         foreach ($fields as $key => $value) {
132
-            $fieldsString .= $key.'='.$value.'&';
132
+            $fieldsString .= $key . '=' . $value . '&';
133 133
         }
134 134
         $fieldsString = rtrim($fieldsString, '&');
135 135
 
Please login to merge, or discard this patch.
src/AppBundle/Security/FormAuthenticator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
      */
149 149
     public function onAuthenticationSuccess(Request $request, TokenInterface $token, $providerKey)
150 150
     {
151
-        $targetPath = $request->getSession()->get('_security.'.$providerKey.'.target_path');
151
+        $targetPath = $request->getSession()->get('_security.' . $providerKey . '.target_path');
152 152
         if (!$targetPath) {
153 153
             $targetPath = $this->router->generate('frontpage');
154 154
         }
Please login to merge, or discard this patch.