. */ /* */ /**********************************************************************************/ namespace Thelia\Condition; /** * Manage how Condition could interact with each other * * @package Condition * @author Guillaume MOREL * */ interface ConditionOrganizerInterface { /** * Organize ConditionInterface * * @param array $conditions Array of ConditionInterface * * @return array Array of ConditionInterface sorted */ public function organize(array $conditions); }