. */ /* */ /**********************************************************************************/ namespace Thelia\Coupon; /** * Created by JetBrains PhpStorm. * Date: 8/19/13 * Time: 3:24 PM * * Manage how Coupons could interact with a Checkout * * @package Condition * @author Guillaume MOREL * */ class RuleOrganizer implements RuleOrganizerInterface { /** * Organize ConditionManagerInterface * * @param array $conditions Array of ConditionManagerInterface * * @return array Array of ConditionManagerInterface sorted */ public function organize(array $conditions) { // TODO: Implement organize() method. } }