Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Commit

Permalink
Merge pull request #62 from keithbrink/analysis-bQvJEQ
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
keithbrink authored Sep 27, 2021
2 parents 279e060 + 2b06091 commit 771121b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions src/AmazonProductInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public function setSKUs($s)
$this->resetSKUs();
$i = 1;
foreach ($s as $x) {
$this->options['SellerSKUList.SellerSKU.' . $i] = $x;
$this->options['SellerSKUList.SellerSKU.'.$i] = $x;
$i++;
}
} else {
Expand Down Expand Up @@ -116,7 +116,7 @@ public function setASINs($s)
$this->resetASINs();
$i = 1;
foreach ($s as $x) {
$this->options['ASINList.ASIN.' . $i] = $x;
$this->options['ASINList.ASIN.'.$i] = $x;
$i++;
}
} else {
Expand Down Expand Up @@ -203,7 +203,7 @@ public function fetchCompetitivePricing()

$this->prepareCompetitive();

$url = $this->urlbase . $this->urlbranch;
$url = $this->urlbase.$this->urlbranch;

$query = $this->genQuery();

Expand Down Expand Up @@ -273,7 +273,7 @@ public function fetchLowestOffer()

$this->prepareLowest();

$url = $this->urlbase . $this->urlbranch;
$url = $this->urlbase.$this->urlbranch;

$query = $this->genQuery();

Expand Down Expand Up @@ -338,7 +338,7 @@ public function fetchMyPrice()

$this->prepareMyPrice();

$url = $this->urlbase . $this->urlbranch;
$url = $this->urlbase.$this->urlbranch;

$query = $this->genQuery();

Expand Down Expand Up @@ -403,7 +403,7 @@ public function fetchCategories()

$this->prepareCategories();

$url = $this->urlbase . $this->urlbranch;
$url = $this->urlbase.$this->urlbranch;

$query = $this->genQuery();

Expand Down Expand Up @@ -469,7 +469,7 @@ public function fetchMatchingProduct()

$this->prepareMatchingProduct();

$url = $this->urlbase . $this->urlbranch;
$url = $this->urlbase.$this->urlbranch;

$query = $this->genQuery();

Expand Down
2 changes: 1 addition & 1 deletion tests/classes/AmazonProductInfoTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -318,4 +318,4 @@ public function testGetMatchingProduct($o)
}
}

require_once __DIR__ . '/../helperFunctions.php';
require_once __DIR__.'/../helperFunctions.php';

0 comments on commit 771121b

Please sign in to comment.