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 (#6)
by Michael
06:10
created
RetailOrderManagement/Payload/TaxDutyFee/DestinationIterable.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
     /**
107 107
      * Get a new, empty store location destination object.
108 108
      *
109
-     * @return IStoreLocation
109
+     * @return IPayload
110 110
      */
111 111
     public function getEmptyStoreLocation()
112 112
     {
Please login to merge, or discard this patch.
src/eBayEnterprise/RetailOrderManagement/Payload/TaxDutyFee/Discount.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -102,6 +102,7 @@
 block discarded – undo
102 102
 
103 103
     /**
104 104
      * @param float
105
+     * @param double $amount
105 106
      * @return self
106 107
      */
107 108
     public function setAmount($amount)
Please login to merge, or discard this patch.
eBayEnterprise/RetailOrderManagement/Payload/TaxDutyFee/TGiftingBase.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -110,6 +110,7 @@
 block discarded – undo
110 110
      *
111 111
      * @param string
112 112
      * @param string
113
+     * @param string $name
113 114
      * @return string
114 115
      */
115 116
     abstract protected function serializeOptionalXmlEncodedValue($name, $value);
Please login to merge, or discard this patch.
src/eBayEnterprise/RetailOrderManagement/Payload/TaxDutyFee/TPriceGroup.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -29,6 +29,9 @@
 block discarded – undo
29 29
         return $this->amount;
30 30
     }
31 31
 
32
+    /**
33
+     * @param double $amount
34
+     */
32 35
     public function setAmount($amount)
33 36
     {
34 37
         $this->amount = $this->sanitizeAmount($amount);
Please login to merge, or discard this patch.
src/eBayEnterprise/RetailOrderManagement/Payload/TPayload.php 1 patch
Doc Comments   +10 added lines, -1 removed lines patch added patch discarded remove patch
@@ -186,6 +186,7 @@  discard block
 block discarded – undo
186 186
      * be overridden by payloads that need it.
187 187
      *
188 188
      * @param string
189
+     * @param string $serializedPayload
189 190
      * @return self
190 191
      * @SuppressWarnings(PHPMD.UnusedFormalParameter)
191 192
      */
@@ -280,6 +281,9 @@  discard block
 block discarded – undo
280 281
         return $this->parentPayload;
281 282
     }
282 283
 
284
+    /**
285
+     * @param string $type
286
+     */
283 287
     protected function getAncestorPayloadOfType($type)
284 288
     {
285 289
         $pl = $this;
@@ -321,7 +325,7 @@  discard block
 block discarded – undo
321 325
     /**
322 326
      * Name, value pairs of root attributes
323 327
      *
324
-     * @return array
328
+     * @return callable
325 329
      */
326 330
     protected function getRootAttributes()
327 331
     {
@@ -355,6 +359,7 @@  discard block
 block discarded – undo
355 359
      *
356 360
      * @param string
357 361
      * @param mixed
362
+     * @param string $attributeName
358 363
      * @return string
359 364
      */
360 365
     protected function serializeOptionalAttribute($attributeName, $value)
@@ -368,6 +373,7 @@  discard block
 block discarded – undo
368 373
      *
369 374
      * @param string
370 375
      * @param float
376
+     * @param string $nodeName
371 377
      * @return string
372 378
      */
373 379
     protected function serializeOptionalAmount($nodeName, $amount)
@@ -384,6 +390,8 @@  discard block
 block discarded – undo
384 390
      * @param string
385 391
      * @param string
386 392
      * @param DateTime
393
+     * @param string $nodeName
394
+     * @param string $format
387 395
      * @return string
388 396
      */
389 397
     protected function serializeOptionalDateValue($nodeName, $format, DateTime $date = null)
@@ -420,6 +428,7 @@  discard block
 block discarded – undo
420 428
      *
421 429
      * @param string
422 430
      * @param string
431
+     * @param string $name
423 432
      * @return string
424 433
      */
425 434
     protected function serializeOptionalXmlEncodedValue($name, $value)
Please login to merge, or discard this patch.
RetailOrderManagement/Payload/Validator/Order/OrderCreateReferences.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -170,6 +170,7 @@  discard block
 block discarded – undo
170 170
      * @param string a descriptive name for the reference, included in any exception messages
171 171
      * @param ArrayAccess collection of payloads the reference should resolve to
172 172
      * @param IPayload|null the referenced payload
173
+     * @param string $referenceName
173 174
      * @throws InvalidPayload If the referenced payload does not exists or is not included in the collection.
174 175
      */
175 176
     protected function validatePayloadReference(
@@ -204,6 +205,7 @@  discard block
 block discarded – undo
204 205
      * @param string a descriptive name for the reference, included in any exception messages
205 206
      * @param ArrayAccess collection of payloads the reference should resolve to
206 207
      * @param IPayload|null the referenced payload
208
+     * @param string $referenceName
207 209
      * @return self
208 210
      * @throws InvalidPayload If the referenced payload exists but is not included in the collection.
209 211
      */
Please login to merge, or discard this patch.
src/eBayEnterprise/RetailOrderManagement/Payload/Checkout/TPersonName.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -110,6 +110,7 @@
 block discarded – undo
110 110
      *
111 111
      * @param string
112 112
      * @param string
113
+     * @param string $name
113 114
      * @return string
114 115
      */
115 116
     abstract protected function serializeOptionalXmlEncodedValue($name, $value);
Please login to merge, or discard this patch.
eBayEnterprise/RetailOrderManagement/Payload/Checkout/TPhysicalAddress.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -110,6 +110,7 @@
 block discarded – undo
110 110
      *
111 111
      * @param string
112 112
      * @param string
113
+     * @param string $name
113 114
      * @return string
114 115
      */
115 116
     abstract protected function serializeOptionalXmlEncodedValue($name, $value);
Please login to merge, or discard this patch.
RetailOrderManagement/Payload/Order/Detail/OrderDetailItem.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -226,6 +226,8 @@
 block discarded – undo
226 226
      *
227 227
      * @param  string
228 228
      * @param  string
229
+     * @param string $nodeName
230
+     * @param string $value
229 231
      * @return string
230 232
      */
231 233
     protected function serializeItemValue($nodeName, $value)
Please login to merge, or discard this patch.