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 ( 959055...79e61e )
by Thijs
43s
created
src/Protocol/Soap/Client/SoapFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
         if ($this->hasLogger() === true) {
86 86
             $soapClient->setLogger($this->logger);
87 87
             $this->logger->info('Created SoapClient for ' . $this->config->getPlatformConfig()->getPlatformName());
88
-            $this->logger->info('Settings', ['settings' => (array) $settings]);
88
+            $this->logger->info('Settings', ['settings' => (array)$settings]);
89 89
             $this->logger->debug('Created SoapClient', ['SoapClient' => print_r($soapClient, true)]);
90 90
         }
91 91
 
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      */
104 104
     private function createCurlClient(array $settings, Manager $manager)
105 105
     {
106
-        $settings['url'] = (string) $manager->getActiveEndpoint()->getUri();
106
+        $settings['url'] = (string)$manager->getActiveEndpoint()->getUri();
107 107
 
108 108
         $factory = GuzzleClientFactory::build($this->config->getPlatformConfig());
109 109
         if ($this->hasLogger() === true) {
Please login to merge, or discard this patch.