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
03:23
created
Form/Extension/LayoutFormTypeExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
     {
109 109
         $resolver->setDefaults(
110 110
             array(
111
-                'layout' => function (Options $options) {
111
+                'layout' => function(Options $options) {
112 112
                     // BC
113 113
                     if (isset($options['horizontal'])) {
114 114
                         return $options['horizontal'];
Please login to merge, or discard this patch.
DependencyInjection/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -212,10 +212,10 @@
 block discarded – undo
212 212
                         ->end()
213 213
                     ->end()
214 214
                     ->beforeNormalization()
215
-                        ->ifTrue(function ($v) {
215
+                        ->ifTrue(function($v) {
216 216
                             return isset($v['horizontal']) && false === $v['horizontal'];
217 217
                         })
218
-                        ->then(function ($v) {
218
+                        ->then(function($v) {
219 219
                             $v['layout'] = false;
220 220
                             unset($v['horizontal']);
221 221
 
Please login to merge, or discard this patch.