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 ( 76b7bf...d8ba5a )
by François-Xavier
35s
created
Form/Extension/LayoutFormTypeExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
     public function configureOptions(OptionsResolver $resolver)
91 91
     {
92 92
         $resolver->setDefaults([
93
-            'layout' => function (Options $options) {
93
+            'layout' => function(Options $options) {
94 94
                 // BC
95 95
                 if (isset($options['horizontal']) && false === $options['horizontal']) {
96 96
                     return false;
Please login to merge, or discard this patch.
DependencyInjection/Configuration.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -224,10 +224,10 @@  discard block
 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
 
@@ -379,10 +379,10 @@  discard block
 block discarded – undo
379 379
 
380 380
     protected function addFlashConfig(ArrayNodeDefinition $rootNode)
381 381
     {
382
-        $fnTest = function ($v) {
382
+        $fnTest = function($v) {
383 383
             return !\is_array($v);
384 384
         };
385
-        $fnThen = function ($v) {
385
+        $fnThen = function($v) {
386 386
             return [$v];
387 387
         };
388 388
 
Please login to merge, or discard this patch.
Tests/Form/AbstractDivLayoutTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
 
78 78
         // Add runtime loader
79 79
         $this->environment->addRuntimeLoader(new FactoryRuntimeLoader([
80
-            FormRenderer::class => function () use ($csrfProvider) {
80
+            FormRenderer::class => function() use ($csrfProvider) {
81 81
                 return new FormRenderer($this->rendererEngine, $csrfProvider);
82 82
             },
83 83
         ]));
Please login to merge, or discard this patch.