. */ /* */ /*************************************************************************************/ namespace Thelia\Coupon; /** * Created by JetBrains PhpStorm. * Date: 8/19/13 * Time: 3:24 PM * * Manage how Coupons could interact with a Checkout * * @package Coupon * @author Guillaume MOREL * */ class CouponManager { /** @var CouponAdapterInterface Provide necessary value from Thelia*/ protected $adapter; /** @var array CouponInterface to process*/ protected $coupons = array(); /** * Get Discount for the given Coupons * * @return float checkout discount */ public function getDiscount() { return 10.00; } }