add missing text fixture method

Followup to 3f246caf1a
This commit is contained in:
Andrew Minion
2022-03-03 21:41:01 -06:00
parent 56a87ae886
commit f5b9900949

View File

@@ -68,4 +68,9 @@ class BuyableProduct extends Model implements Buyable
{
return $this->weight;
}
public function getBuyableTaxRate(CartItemOptions $options): float
{
return $this->tax_rate;
}
}