Update Buyable.php

This commit is contained in:
Patrick
2022-01-18 00:25:15 +01:00
committed by GitHub
parent 2e23535593
commit edb8220641

View File

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