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(); }