add options to buyable methods

This commit is contained in:
Mikhail Lisnyak
2016-09-04 12:11:03 +03:00
parent c827ff25c3
commit e801689441
3 changed files with 10 additions and 10 deletions

View File

@@ -9,19 +9,19 @@ interface Buyable
*
* @return int|string
*/
public function getBuyableIdentifier();
public function getBuyableIdentifier($options = null);
/**
* Get the description or title of the Buyable item.
*
* @return string
*/
public function getBuyableDescription();
public function getBuyableDescription($options = null);
/**
* Get the price of the Buyable item.
*
* @return float
*/
public function getBuyablePrice();
public function getBuyablePrice($options = null);
}