mirror of
https://github.com/kevin-DL/LaravelShoppingcart.git
synced 2026-01-23 23:51:25 +00:00
Update Buyable.php
This commit is contained in:
@@ -9,26 +9,26 @@ interface Buyable
|
|||||||
*
|
*
|
||||||
* @return int|string
|
* @return int|string
|
||||||
*/
|
*/
|
||||||
public function getBuyableIdentifier($options = null);
|
public function getBuyableIdentifier();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the description or title of the Buyable item.
|
* Get the description or title of the Buyable item.
|
||||||
*
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function getBuyableDescription($options = null);
|
public function getBuyableDescription();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the price of the Buyable item.
|
* Get the price of the Buyable item.
|
||||||
*
|
*
|
||||||
* @return float
|
* @return float
|
||||||
*/
|
*/
|
||||||
public function getBuyablePrice($options = null);
|
public function getBuyablePrice();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the weight of the Buyable item.
|
* Get the weight of the Buyable item.
|
||||||
*
|
*
|
||||||
* @return float
|
* @return float
|
||||||
*/
|
*/
|
||||||
public function getBuyableWeight($options = null);
|
public function getBuyableWeight();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user