Large update for version 2.0

This commit is contained in:
Rob Gloudemans
2016-05-12 10:19:38 +02:00
parent f5f15c73a2
commit 0f20bef1af
35 changed files with 1832 additions and 1145 deletions

27
src/Contracts/Buyable.php Normal file
View File

@@ -0,0 +1,27 @@
<?php
namespace Gloudemans\Shoppingcart\Contracts;
interface Buyable
{
/**
* Get the identifier of the Buyable item.
*
* @return int|string
*/
public function getBuyableIdentifier();
/**
* Get the description or title of the Buyable item.
*
* @return string
*/
public function getBuyableDescription();
/**
* Get the price of the Buyable item.
*
* @return float
*/
public function getBuyablePrice();
}