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 ( c64ebc...8024f1 )
by Christian
06:46
created
tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
Please login to merge, or discard this patch.
src/Provider/ConfigProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
Please login to merge, or discard this patch.
src/DependencyInjection/Core23MenuExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         $config        = $this->processConfiguration($configuration, $configs);
31 31
 
32 32
         $container->setParameter('core23.menu.groups', array_combine(
33
-            array_map(function ($name) {
33
+            array_map(function($name) {
34 34
                 return sprintf('static_%s', $name);
35 35
             }, array_keys($config['groups'])),
36 36
             $config['groups']
Please login to merge, or discard this patch.
src/DependencyInjection/Configuration.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -51,9 +51,9 @@
 block discarded – undo
51 51
                         ->children()
52 52
                             ->scalarNode('name')->defaultNull()->end()
53 53
                             ->arrayNode('attributes')
54
-                                 ->useAttributeAsKey('id')
55
-                                 ->defaultValue([])
56
-                                 ->prototype('scalar')->end()
54
+                                    ->useAttributeAsKey('id')
55
+                                    ->defaultValue([])
56
+                                    ->prototype('scalar')->end()
57 57
                             ->end()
58 58
                             ->arrayNode('items')
59 59
                                 ->useAttributeAsKey('id')
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
@@ -87,16 +87,16 @@  discard block
 block discarded – undo
87 87
                     ->defaultValue([])
88 88
                     ->useAttributeAsKey('param')
89 89
                     ->prototype('scalar')->end()
90
-                    ->validate()->ifTrue(function ($element) {
90
+                    ->validate()->ifTrue(function($element) {
91 91
                         return !is_array($element);
92 92
                     })->thenInvalid('The routeParams element must be an array.')->end()
93 93
                 ->end()
94 94
                 ->variableNode('children')
95 95
                     ->defaultValue([])
96
-                    ->validate()->ifTrue(function ($element) {
96
+                    ->validate()->ifTrue(function($element) {
97 97
                         return !is_array($element);
98 98
                     })->thenInvalid('The children element must be an array.')->end()
99
-                    ->validate()->always(function ($children) {
99
+                    ->validate()->always(function($children) {
100 100
                         array_walk($children, [$this, 'evaluateChildren']);
101 101
 
102 102
                         return $children;
Please login to merge, or discard this patch.
src/DependencyInjection/Compiler/MenuCompilerPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
Please login to merge, or discard this patch.
src/Menu/ConfigBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
Please login to merge, or discard this patch.
src/Core23MenuBundle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
Please login to merge, or discard this patch.