Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
cmesptchr authored and actions-user committed Jul 7, 2020
1 parent 2b6f4ac commit 66b64b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ public function getAvailablePaymentMethodsForCart(int $quoteId): array
return $this->request(
'get',
$this->baseUrl . $this->apiPrefix . 'carts/' . $quoteId . '/payment-methods',
);
);
}

/**
Expand Down Expand Up @@ -372,7 +372,7 @@ public function cancelOrder(int $orderId)
return $this->request(
'post',
$this->baseUrl . $this->apiPrefix . 'orders/' . $orderId . '/cancel',
);
);
}

/**
Expand All @@ -385,7 +385,7 @@ public function getOrder(int $orderId)
return $this->request(
'get',
$this->baseUrl . $this->apiPrefix . 'orders/' . $orderId,
);
);
}

/**
Expand Down

0 comments on commit 66b64b8

Please sign in to comment.