Skip to content

Commit

Permalink
Merge pull request #1 from bankette/master
Browse files Browse the repository at this point in the history
Fix variable name
  • Loading branch information
K-mos authored Aug 28, 2017
2 parents 6566e88 + e861a86 commit 9554998
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ class MarketplaceWebServiceOrders_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 9554998

Please sign in to comment.