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 ( 803ce4...84c999 )
by Michael
14:57 queued 01:03
created
src/eBayEnterprise/RetailOrderManagement/Payload/Order/Tax.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@
 block discarded – undo
191 191
         $isAllowed = in_array($jurisdictionLevel, $this->allowedJurisdictionLevels);
192 192
         $this->jurisdictionLevel = $isAllowed ? $jurisdictionLevel : null;
193 193
         if (!$isAllowed) {
194
-            $logData = ['jurisdiction_level' => $jurisdictionLevel];
194
+            $logData = [ 'jurisdiction_level' => $jurisdictionLevel ];
195 195
             $this->logger->warning(
196 196
                 'Jurisdiction Level "{jurisdiction_level}" is not allowed.',
197 197
                 $this->getLogContextData(__CLASS__, $logData)
Please login to merge, or discard this patch.
src/eBayEnterprise/RetailOrderManagement/Payload/TPayloadLogger.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
      * @param  array
49 49
      * @return array
50 50
      */
51
-    protected function getLogContextData($class, array $logData=[])
51
+    protected function getLogContextData($class, array $logData = [ ])
52 52
     {
53 53
         $context = $this->getLogContext();
54 54
         return $context ? $context->getMetaData($class, $logData) : $logData;
Please login to merge, or discard this patch.