From f5b9900949b5ec6fee0440471324153a3b009173 Mon Sep 17 00:00:00 2001 From: Andrew Minion Date: Thu, 3 Mar 2022 21:41:01 -0600 Subject: [PATCH] add missing text fixture method Followup to 3f246caf1a40bd111bf7d33f6e209787d0134710 --- tests/Fixtures/BuyableProduct.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/Fixtures/BuyableProduct.php b/tests/Fixtures/BuyableProduct.php index 9265aab..18de007 100644 --- a/tests/Fixtures/BuyableProduct.php +++ b/tests/Fixtures/BuyableProduct.php @@ -68,4 +68,9 @@ class BuyableProduct extends Model implements Buyable { return $this->weight; } + + public function getBuyableTaxRate(CartItemOptions $options): float + { + return $this->tax_rate; + } }