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
Pull Request — master (#1044)
by
unknown
02:19
created
DependencyInjection/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -224,10 +224,10 @@
 block discarded – undo
224 224
                         ->end()
225 225
                     ->end()
226 226
                     ->beforeNormalization()
227
-                        ->ifTrue(function ($v) {
227
+                        ->ifTrue(function($v) {
228 228
                             return isset($v['horizontal']);
229 229
                         })
230
-                        ->then(function ($v) {
230
+                        ->then(function($v) {
231 231
                             $v['layout'] = $v['horizontal'] ? 'horizontal' : false;
232 232
                             unset($v['horizontal']);
233 233
 
Please login to merge, or discard this patch.
Form/Extension/LayoutFormTypeExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     public function configureOptions(OptionsResolver $resolver)
90 90
     {
91 91
         $resolver->setDefaults(array(
92
-            'layout' => function (Options $options) {
92
+            'layout' => function(Options $options) {
93 93
                 // BC
94 94
                 if (isset($options['horizontal']) && false === $options['horizontal']) {
95 95
                     return false;
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
         if (method_exists('Symfony\Component\Form\AbstractType', 'getBlockPrefix')) {
110 110
             $resolver->setAllowedValues('layout', $allowedValues);
111 111
         } else {
112
-            $resolver->setAllowedValues(array('layout' => $allowedValues));// SF <2.8 BC
112
+            $resolver->setAllowedValues(array('layout' => $allowedValues)); // SF <2.8 BC
113 113
         }
114 114
     }
115 115
 
Please login to merge, or discard this patch.