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
Branch scrutinizer-fixes (60c229)
by Thijs
02:43
created
src/Protocol/Soap/Client/SoapClient.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
      * Determines methods.
159 159
      * For Soap it's either GET or POST.
160 160
      *
161
-     * @param mixed $request
161
+     * @param string $request
162 162
      *
163 163
      * @return string
164 164
      */
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
     }
221 221
 
222 222
     /**
223
-     * @return httpClient
223
+     * @return HttpClient
224 224
      */
225 225
     public function getHttpClient()
226 226
     {
Please login to merge, or discard this patch.
src/Platform/Webservices/Connector.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -64,13 +64,13 @@
 block discarded – undo
64 64
             'accountEditV2',
65 65
             [
66 66
                 'accountid'        => $accountId,
67
-                 'address'          => $address,
68
-                 'contactname'      => $contactName,
69
-                 'contactemail'     => $contactEmail,
70
-                 'telephone'        => $telephone,
71
-                 'fax'              => $fax,
72
-                 'description'      => $description,
73
-                 'balancethreshold' => (float)$balanceThreshold,
67
+                    'address'          => $address,
68
+                    'contactname'      => $contactName,
69
+                    'contactemail'     => $contactEmail,
70
+                    'telephone'        => $telephone,
71
+                    'fax'              => $fax,
72
+                    'description'      => $description,
73
+                    'balancethreshold' => (float)$balanceThreshold,
74 74
             ]
75 75
         );
76 76
     }
Please login to merge, or discard this patch.