From e104a06f72e587b35ebe7e6a7395cd25cadffe17 Mon Sep 17 00:00:00 2001 From: Patrick Date: Tue, 18 Jan 2022 00:27:10 +0100 Subject: [PATCH] Update BuyableProduct.php --- tests/Fixtures/BuyableProduct.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/Fixtures/BuyableProduct.php b/tests/Fixtures/BuyableProduct.php index be0dc7c..576a9cb 100644 --- a/tests/Fixtures/BuyableProduct.php +++ b/tests/Fixtures/BuyableProduct.php @@ -33,7 +33,7 @@ class BuyableProduct extends Model implements Buyable * * @return int|string */ - public function getBuyableIdentifier($options = null) + public function getBuyableIdentifier() { return $this->id; } @@ -43,7 +43,7 @@ class BuyableProduct extends Model implements Buyable * * @return string */ - public function getBuyableDescription($options = null) + public function getBuyableDescription() : ?string { return $this->name; } @@ -53,7 +53,7 @@ class BuyableProduct extends Model implements Buyable * * @return float */ - public function getBuyablePrice($options = null) + public function getBuyablePrice() { return $this->price; } @@ -63,7 +63,7 @@ class BuyableProduct extends Model implements Buyable * * @return float */ - public function getBuyableWeight($options = null) + public function getBuyableWeight() { return $this->weight; }