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.
Passed
Pull Request — master (#289)
by Asmir
02:01
created
src/DependencyInjection/EightPointsGuzzleExtension.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -63,11 +63,11 @@  discard block
 block discarded – undo
63 63
             $plugin->load($config, $container);
64 64
         }
65 65
 
66
-        $clientsWithLogging = array_filter($config['clients'], function ($options) {
66
+        $clientsWithLogging = array_filter($config['clients'], function($options) {
67 67
             return $options['logging'] === true;
68 68
         });
69 69
 
70
-        if ($logging || count($clientsWithLogging)>0) {
70
+        if ($logging || count($clientsWithLogging) > 0) {
71 71
             $this->defineTwigDebugExtension($container);
72 72
             $this->defineLogger($container);
73 73
             $this->defineDataCollector($container, $config['slow_response_time'] / 1000);
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
         foreach ($config['clients'] as $name => $options) {
80 80
             $argument = [
81 81
                 'base_uri' => $options['base_url'],
82
-                'handler'  => $this->createHandler($container, $name, $options, $options['logging'] ?? $logging   === true, $profiling)
82
+                'handler'  => $this->createHandler($container, $name, $options, $options['logging'] ?? $logging === true, $profiling)
83 83
             ];
84 84
 
85 85
             // if present, add default options to the constructor argument for the Guzzle client
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
         $container->setDefinition($eventServiceName, $eventService);
125 125
 
126 126
         // Create the event Dispatch Middleware
127
-        $eventExpression  = new Expression(sprintf("service('%s').dispatchEvent()", $eventServiceName));
127
+        $eventExpression = new Expression(sprintf("service('%s').dispatchEvent()", $eventServiceName));
128 128
 
129 129
         $handler = new Definition(HandlerStack::class);
130 130
         $handler->setFactory([HandlerStack::class, 'create']);
Please login to merge, or discard this patch.