Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 59ccbf5

Browse files
ahinkleStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent 60c7510 commit 59ccbf5

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/Api/CartItems.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function editItem($itemId, $body = [])
4848
{
4949
$this->validateSingleStoreCode();
5050

51-
return $this->put('/carts/mine/items/'. $itemId, $body);
51+
return $this->put('/carts/mine/items/'.$itemId, $body);
5252
}
5353

5454
/**

src/Api/GuestCarts.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ public function addItem($cartId, $sku, $quantity)
5353
]);
5454
}
5555

56-
5756
/**
5857
* Add/update the specified cart item.
5958
*
@@ -64,7 +63,7 @@ public function addItem($cartId, $sku, $quantity)
6463
*/
6564
public function editItem($cartId, $itemId, $body = [])
6665
{
67-
return $this->put('/guest-carts/'.$cartId.'/items/'. $itemId, $body);
66+
return $this->put('/guest-carts/'.$cartId.'/items/'.$itemId, $body);
6867
}
6968

7069
/**

0 commit comments

Comments
 (0)