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

Commit 771121b

Browse files
authored
Merge pull request #62 from keithbrink/analysis-bQvJEQ
Apply fixes from StyleCI
2 parents 279e060 + 2b06091 commit 771121b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/AmazonProductInfo.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public function setSKUs($s)
7070
$this->resetSKUs();
7171
$i = 1;
7272
foreach ($s as $x) {
73-
$this->options['SellerSKUList.SellerSKU.' . $i] = $x;
73+
$this->options['SellerSKUList.SellerSKU.'.$i] = $x;
7474
$i++;
7575
}
7676
} else {
@@ -116,7 +116,7 @@ public function setASINs($s)
116116
$this->resetASINs();
117117
$i = 1;
118118
foreach ($s as $x) {
119-
$this->options['ASINList.ASIN.' . $i] = $x;
119+
$this->options['ASINList.ASIN.'.$i] = $x;
120120
$i++;
121121
}
122122
} else {
@@ -203,7 +203,7 @@ public function fetchCompetitivePricing()
203203

204204
$this->prepareCompetitive();
205205

206-
$url = $this->urlbase . $this->urlbranch;
206+
$url = $this->urlbase.$this->urlbranch;
207207

208208
$query = $this->genQuery();
209209

@@ -273,7 +273,7 @@ public function fetchLowestOffer()
273273

274274
$this->prepareLowest();
275275

276-
$url = $this->urlbase . $this->urlbranch;
276+
$url = $this->urlbase.$this->urlbranch;
277277

278278
$query = $this->genQuery();
279279

@@ -338,7 +338,7 @@ public function fetchMyPrice()
338338

339339
$this->prepareMyPrice();
340340

341-
$url = $this->urlbase . $this->urlbranch;
341+
$url = $this->urlbase.$this->urlbranch;
342342

343343
$query = $this->genQuery();
344344

@@ -403,7 +403,7 @@ public function fetchCategories()
403403

404404
$this->prepareCategories();
405405

406-
$url = $this->urlbase . $this->urlbranch;
406+
$url = $this->urlbase.$this->urlbranch;
407407

408408
$query = $this->genQuery();
409409

@@ -469,7 +469,7 @@ public function fetchMatchingProduct()
469469

470470
$this->prepareMatchingProduct();
471471

472-
$url = $this->urlbase . $this->urlbranch;
472+
$url = $this->urlbase.$this->urlbranch;
473473

474474
$query = $this->genQuery();
475475

tests/classes/AmazonProductInfoTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,4 +318,4 @@ public function testGetMatchingProduct($o)
318318
}
319319
}
320320

321-
require_once __DIR__ . '/../helperFunctions.php';
321+
require_once __DIR__.'/../helperFunctions.php';

0 commit comments

Comments
 (0)