/
home
/
techb158
/
immovalet.com
/
platform
/
plugins
/
ecommerce
/
src
/
Cart
/
Contracts
/
/home/techb158/immovalet.com/platform/plugins/ecommerce/src/Cart/Contracts
mkdir
upload
Name
Size
Mode
Actions
Buyable.php
616
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/platform/plugins/ecommerce/src/Cart/Contracts/Buyable.php
(616B)
<?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); }
Save