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
Pull Request — master (#9)
by Ryan
06:55 queued 14s
created
RetailOrderManagement/Payload/OrderEvents/BackOrderShipGroup.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,6 +113,6 @@
 block discarded – undo
113 113
      */
114 114
     protected function getRootAttributes()
115 115
     {
116
-        return [];
116
+        return [ ];
117 117
     }
118 118
 }
Please login to merge, or discard this patch.
src/eBayEnterprise/RetailOrderManagement/Payload/OrderEvents/EddMessage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,6 +113,6 @@
 block discarded – undo
113 113
      */
114 114
     protected function getRootAttributes()
115 115
     {
116
-        return [];
116
+        return [ ];
117 117
     }
118 118
 }
Please login to merge, or discard this patch.
src/eBayEnterprise/RetailOrderManagement/Payload/Payment/LineItem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,6 +113,6 @@
 block discarded – undo
113 113
      */
114 114
     protected function getRootAttributes()
115 115
     {
116
-        return [];
116
+        return [ ];
117 117
     }
118 118
 }
Please login to merge, or discard this patch.
RetailOrderManagement/Payload/Payment/StoredValueBalanceReply.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 
35 35
     protected $responseCode;
36 36
     /** @var array response codes that are considered a success */
37
-    protected $successResponseCodes = ['Success'];
37
+    protected $successResponseCodes = [ 'Success' ];
38 38
 
39 39
     /**
40 40
      * @param IValidatorIterator
Please login to merge, or discard this patch.
RetailOrderManagement/Payload/Payment/StoredValueRedeemReply.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 
35 35
     protected $responseCode;
36 36
     /** @var array response codes that are considered a success */
37
-    protected $successResponseCodes = ['Success'];
37
+    protected $successResponseCodes = [ 'Success' ];
38 38
 
39 39
     /**
40 40
      * @param IValidatorIterator
Please login to merge, or discard this patch.
eBayEnterprise/RetailOrderManagement/Payload/TaxDutyFee/DutyPriceGroup.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 
51 51
         $this->optionalExtractionPaths = array_merge(
52 52
             $this->optionalExtractionPaths,
53
-            ['calculationError' => 'x:CalculationError']
53
+            [ 'calculationError' => 'x:CalculationError' ]
54 54
         );
55 55
     }
56 56
 
Please login to merge, or discard this patch.
RetailOrderManagement/Payload/TaxDutyFee/MerchandisePriceGroup.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 
46 46
         $this->optionalExtractionPaths = array_merge(
47 47
             $this->optionalExtractionPaths,
48
-            ['unitPrice' => 'x:UnitPrice']
48
+            [ 'unitPrice' => 'x:UnitPrice' ]
49 49
         );
50 50
     }
51 51
 
Please login to merge, or discard this patch.
eBayEnterprise/RetailOrderManagement/Payload/Validator/OptionalGroup.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,10 +45,10 @@
 block discarded – undo
45 45
      */
46 46
     public function validate(Payload\IPayload $payload)
47 47
     {
48
-        $invalidDataAccessors = [];
48
+        $invalidDataAccessors = [ ];
49 49
         foreach ($this->requiredDataAccessors as $method) {
50 50
             if (is_null($payload->$method())) {
51
-                $invalidDataAccessors[] = $method;
51
+                $invalidDataAccessors[ ] = $method;
52 52
             }
53 53
         }
54 54
         if ($invalidDataAccessors) {
Please login to merge, or discard this patch.
src/eBayEnterprise/RetailOrderManagement/Payload/AbstractConfigLocator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      */
32 32
     public function hasPayloadConfig($type)
33 33
     {
34
-        return isset($this->getConfig()[$type]);
34
+        return isset($this->getConfig()[ $type ]);
35 35
     }
36 36
 
37 37
     /**
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     public function getPayloadConfig($type)
45 45
     {
46 46
         if ($this->hasPayloadConfig($type)) {
47
-            return $this->getConfig()[$type];
47
+            return $this->getConfig()[ $type ];
48 48
         }
49 49
         throw new UnsupportedPayload("No configuration found for $type.");
50 50
     }
Please login to merge, or discard this patch.