. */ /* */ /**********************************************************************************/ 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 * */ interface RuleOrganizerInterface { /** * Organize CouponRuleInterface * * @param array $rules Array of CouponRuleInterface * * @return array Array of CouponRuleInterface sorted */ public function organize(array $rules); }