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
Branch master (d7e2e3)
by Niels
03:40
created
Category
src/Request/AbstractRequest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     ) {
70 70
         $this->parseParameters($parameters);
71 71
 
72
-        if (! $messageFactory) {
72
+        if (!$messageFactory) {
73 73
             $messageFactory = MessageFactoryDiscovery::find();
74 74
         }
75 75
 
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
      */
155 155
     protected function getQueryParameter($key)
156 156
     {
157
-        if (! array_key_exists($key, $this->queryParameters)) {
157
+        if (!array_key_exists($key, $this->queryParameters)) {
158 158
             return null;
159 159
         }
160 160
 
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
         foreach ($parameters as $key => $value) {
220 220
             $methodName = 'set' . ucfirst($key);
221 221
 
222
-            if (! method_exists($this, $methodName)) {
222
+            if (!method_exists($this, $methodName)) {
223 223
                 continue;
224 224
             }
225 225
 
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
      */
290 290
     public function compileHttpRequest()
291 291
     {
292
-        if (! $this->validate()) {
292
+        if (!$this->validate()) {
293 293
             throw new InvalidRequestException('One or more required parameters are not set.');
294 294
         }
295 295
 
Please login to merge, or discard this patch.