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 ( 42309e...98e5b5 )
by Philipp A.
11:58
created
Menu/Factory/MenuDecorator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     public function buildItem(ItemInterface $item, array $options)
28 28
     {
29 29
         if ($options['navbar']) {
30
-            $item->setChildrenAttribute('class', 'nav navbar-nav'.($options['navbar-right']?' navbar-right':''));
30
+            $item->setChildrenAttribute('class', 'nav navbar-nav'.($options['navbar-right'] ? ' navbar-right' : ''));
31 31
         }
32 32
 
33 33
         if ($options['pills']) {
Please login to merge, or discard this patch.
Tests/Form/AbstractDivLayoutTest.php 3 patches
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -329,28 +329,28 @@
 block discarded – undo
329 329
 
330 330
     protected function getFormType($name)
331 331
     {
332
-         if(method_exists('Symfony\Component\Form\AbstractType', 'getBlockPrefix')) {
333
-             return $this->formTypeMap[$name];
334
-         }
332
+            if(method_exists('Symfony\Component\Form\AbstractType', 'getBlockPrefix')) {
333
+                return $this->formTypeMap[$name];
334
+            }
335 335
 
336
-         return $name;
336
+            return $name;
337 337
     }
338 338
 
339 339
     protected function getCollectionTypeKey()
340 340
     {
341
-         if(method_exists('Symfony\Component\Form\AbstractType', 'getBlockPrefix')) {
342
-             return 'entry_type';
343
-         }
341
+            if(method_exists('Symfony\Component\Form\AbstractType', 'getBlockPrefix')) {
342
+                return 'entry_type';
343
+            }
344 344
 
345
-         return 'type';
345
+            return 'type';
346 346
     }
347 347
 
348 348
     protected function getCollectionOptionsKey()
349 349
     {
350
-         if(method_exists('Symfony\Component\Form\AbstractType', 'getBlockPrefix')) {
351
-             return 'entry_options';
352
-         }
350
+            if(method_exists('Symfony\Component\Form\AbstractType', 'getBlockPrefix')) {
351
+                return 'entry_options';
352
+            }
353 353
 
354
-         return 'options';
354
+            return 'options';
355 355
     }
356 356
 }
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
 
330 330
     protected function getFormType($name)
331 331
     {
332
-         if(method_exists('Symfony\Component\Form\AbstractType', 'getBlockPrefix')) {
332
+         if (method_exists('Symfony\Component\Form\AbstractType', 'getBlockPrefix')) {
333 333
              return $this->formTypeMap[$name];
334 334
          }
335 335
 
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
 
339 339
     protected function getCollectionTypeKey()
340 340
     {
341
-         if(method_exists('Symfony\Component\Form\AbstractType', 'getBlockPrefix')) {
341
+         if (method_exists('Symfony\Component\Form\AbstractType', 'getBlockPrefix')) {
342 342
              return 'entry_type';
343 343
          }
344 344
 
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
 
348 348
     protected function getCollectionOptionsKey()
349 349
     {
350
-         if(method_exists('Symfony\Component\Form\AbstractType', 'getBlockPrefix')) {
350
+         if (method_exists('Symfony\Component\Form\AbstractType', 'getBlockPrefix')) {
351 351
              return 'entry_options';
352 352
          }
353 353
 
Please login to merge, or discard this patch.
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -338,6 +338,11 @@
 block discarded – undo
338 338
         return (string) $this->renderer->searchAndRenderBlock($view, 'label', $vars);
339 339
     }
340 340
 
341
+    /**
342
+     * @param string $name
343
+     *
344
+     * @return string|null
345
+     */
341 346
     protected function getFormType($name)
342 347
     {
343 348
          if(method_exists('Symfony\Component\Form\AbstractType', 'getBlockPrefix')) {
Please login to merge, or discard this patch.