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

Commit d09fce7

Browse files
ahinkleStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent fa158f0 commit d09fce7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Api/CartItems.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ public function removeItem($itemId)
4747
{
4848
$this->validateSingleStoreCode();
4949

50-
return $this->delete('/carts/mine/items/'. $itemId);
50+
return $this->delete('/carts/mine/items/'.$itemId);
5151
}
5252
}

src/Api/GuestCarts.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,6 @@ public function paymentInformation($cartId, $body = [])
131131
*/
132132
public function removeItem($cartId, $itemId)
133133
{
134-
return $this->delete('/guest-carts/'.$cartId.'/items/'. $itemId);
134+
return $this->delete('/guest-carts/'.$cartId.'/items/'.$itemId);
135135
}
136136
}

0 commit comments

Comments
 (0)