fix missing semicolon

This commit is contained in:
Andrew Minion
2022-03-03 21:34:02 -06:00
parent bd1487f5a9
commit e0bf453eb2

View File

@@ -32,5 +32,5 @@ interface Buyable
/** /**
* Get the taxRate of the Buyable item. * Get the taxRate of the Buyable item.
*/ */
public function getBuyableTaxRate(CartItemOptions $options): float public function getBuyableTaxRate(CartItemOptions $options): float;
} }