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