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 ( ff73c6...020637 )
by Christian
02:01
created
src/DependencyInjection/Configuration.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -86,16 +86,16 @@
 block discarded – undo
86 86
                     ->defaultValue([])
87 87
                     ->useAttributeAsKey('param')
88 88
                     ->prototype('scalar')->end()
89
-                    ->validate()->ifTrue(function ($element) {
89
+                    ->validate()->ifTrue(function($element) {
90 90
                         return !\is_array($element);
91 91
                     })->thenInvalid('The routeParams element must be an array.')->end()
92 92
                 ->end()
93 93
                 ->variableNode('children')
94 94
                     ->defaultValue([])
95
-                    ->validate()->ifTrue(function ($element) {
95
+                    ->validate()->ifTrue(function($element) {
96 96
                         return !\is_array($element);
97 97
                     })->thenInvalid('The children element must be an array.')->end()
98
-                    ->validate()->always(function ($children) {
98
+                    ->validate()->always(function($children) {
99 99
                         array_walk($children, [$this, 'evaluateChildren']);
100 100
 
101 101
                         return $children;
Please login to merge, or discard this patch.