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