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
Push — master ( c7ca15...b7663d )
by Jamie
04:26
created
src/Common/Service/Builder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     /**
109 109
      * @codeCoverageIgnore
110 110
      */
111
-    private function addDebugMiddleware(array $options, HandlerStack &$stack)
111
+    private function addDebugMiddleware(array $options, HandlerStack & $stack)
112 112
     {
113 113
         if (!empty($options['debugLog'])
114 114
             && !empty($options['logger'])
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
     private function stockAuthHandler(array &$options)
134 134
     {
135 135
         if (!isset($options['authHandler'])) {
136
-            $options['authHandler'] = function () use ($options) {
136
+            $options['authHandler'] = function() use ($options) {
137 137
                 return $options['identityService']->generateToken($options);
138 138
             };
139 139
         }
Please login to merge, or discard this patch.