PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
ecommerce
/
src
/
Cart
/
Contracts
<?php namespace Botble\Ecommerce\Cart\Contracts; interface Buyable { /** * Get the identifier of the Buyable item. * * @param null $options * @return int|string */ public function getBuyableIdentifier($options = null); /** * Get the description or title of the Buyable item. * * @param null $options * @return string */ public function getBuyableDescription($options = null); /** * Get the price of the Buyable item. * * @param null $options * @return float */ public function getBuyablePrice($options = null); }
[+]
..
[-] Buyable.php
[edit]