Skip to content

Commit

Permalink
fixed error where same parameter name was used twice
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsilkjr86 committed Jul 17, 2018
1 parent 35c2632 commit 6d98eb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MWSSubscriptionsService/Model/ResponseHeaderMetadata.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ class MWSSubscriptionsService_Model_ResponseHeaderMetadata {
private $metadata = array();

public function __construct($requestId = null, $responseContext = null, $timestamp = null,
$quotaMax = null, $quotaMax = null, $quotaResetsAt = null) {
$quotaMax = null, $quotaRemaining = null, $quotaResetsAt = null) {
$this->metadata[self::REQUEST_ID] = $requestId;
$this->metadata[self::RESPONSE_CONTEXT] = $responseContext;
$this->metadata[self::TIMESTAMP] = $timestamp;
$this->metadata[self::QUOTA_MAX] = $quotaMax;
$this->metadata[self::QUOTA_REMAINING] = $quotaMax;
$this->metadata[self::QUOTA_REMAINING] = $quotaRemaining;
$this->metadata[self::QUOTA_RESETS_AT] = $quotaResetsAt;
}

Expand Down

0 comments on commit 6d98eb2

Please sign in to comment.