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 ( 79b8fd...21a9d2 )
by Craig
10:33 queued 01:00
created
Tests/Form/AbstractDivLayoutTest.php 3 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -302,10 +302,10 @@
 block discarded – undo
302 302
 
303 303
     protected function getFormType($name)
304 304
     {
305
-         if(method_exists('Symfony\Component\Form\AbstractType', 'getBlockPrefix')) {
306
-             return $this->formTypeMap[$name];
307
-         }
305
+            if(method_exists('Symfony\Component\Form\AbstractType', 'getBlockPrefix')) {
306
+                return $this->formTypeMap[$name];
307
+            }
308 308
 
309
-         return $name;
309
+            return $name;
310 310
     }
311 311
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -302,7 +302,7 @@
 block discarded – undo
302 302
 
303 303
     protected function getFormType($name)
304 304
     {
305
-         if(method_exists('Symfony\Component\Form\AbstractType', 'getBlockPrefix')) {
305
+         if (method_exists('Symfony\Component\Form\AbstractType', 'getBlockPrefix')) {
306 306
              return $this->formTypeMap[$name];
307 307
          }
308 308
 
Please login to merge, or discard this patch.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -300,6 +300,9 @@
 block discarded – undo
300 300
         return (string) $this->extension->renderer->searchAndRenderBlock($view, 'label', $vars);
301 301
     }
302 302
 
303
+    /**
304
+     * @param string $name
305
+     */
303 306
     protected function getFormType($name)
304 307
     {
305 308
          if(method_exists('Symfony\Component\Form\AbstractType', 'getBlockPrefix')) {
Please login to merge, or discard this patch.