From edb82206413c6d628096e38a5eb132f6c517d7c7 Mon Sep 17 00:00:00 2001 From: Patrick Date: Tue, 18 Jan 2022 00:25:15 +0100 Subject: [PATCH] Update Buyable.php --- src/Contracts/Buyable.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Contracts/Buyable.php b/src/Contracts/Buyable.php index 01134e7..a58f59e 100644 --- a/src/Contracts/Buyable.php +++ b/src/Contracts/Buyable.php @@ -9,26 +9,26 @@ interface Buyable * * @return int|string */ - public function getBuyableIdentifier($options = null); + public function getBuyableIdentifier(); /** * Get the description or title of the Buyable item. * * @return string */ - public function getBuyableDescription($options = null); + public function getBuyableDescription(); /** * Get the price of the Buyable item. * * @return float */ - public function getBuyablePrice($options = null); + public function getBuyablePrice(); /** * Get the weight of the Buyable item. * * @return float */ - public function getBuyableWeight($options = null); + public function getBuyableWeight(); }