@@ -30,7 +30,7 @@ |
||
30 | 30 | $this->assertSame($request, $request->setSellerId('VALID_SELLER_ID')); |
31 | 31 | |
32 | 32 | for ($i = 1; $i <= 1001; $i++) { |
33 | - $request->addItemCode('AN_ITEM_CODE_' . $i); |
|
33 | + $request->addItemCode('AN_ITEM_CODE_'.$i); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | $request->getParams(); |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -require_once __DIR__ . '/vendor/autoload.php'; |
|
3 | +require_once __DIR__.'/vendor/autoload.php'; |
|
4 | 4 | |
5 | 5 | |
6 | 6 | use Shippinno\YahooShoppingJp\Factory\GetItemStockInfoFactory; |
@@ -28,7 +28,7 @@ |
||
28 | 28 | */ |
29 | 29 | public function distillResponse(array $response): array |
30 | 30 | { |
31 | - if(! isset($response['Result'])) { |
|
31 | + if (!isset($response['Result'])) { |
|
32 | 32 | throw new DistillationException; |
33 | 33 | } |
34 | 34 |
@@ -64,7 +64,7 @@ |
||
64 | 64 | */ |
65 | 65 | private function validateRequest(): void |
66 | 66 | { |
67 | - if (! isset($this->params['seller_id'])) { |
|
67 | + if (!isset($this->params['seller_id'])) { |
|
68 | 68 | throw new InvalidRequestException; |
69 | 69 | } |
70 | 70 |