From e0bf453eb20ea908535bb843e150e6dfb8150282 Mon Sep 17 00:00:00 2001 From: Andrew Minion Date: Thu, 3 Mar 2022 21:34:02 -0600 Subject: [PATCH] fix missing semicolon --- src/Contracts/Buyable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Contracts/Buyable.php b/src/Contracts/Buyable.php index d086d22..006adfe 100644 --- a/src/Contracts/Buyable.php +++ b/src/Contracts/Buyable.php @@ -32,5 +32,5 @@ interface Buyable /** * Get the taxRate of the Buyable item. */ - public function getBuyableTaxRate(CartItemOptions $options): float + public function getBuyableTaxRate(CartItemOptions $options): float; }