. */ /* */ /**********************************************************************************/ 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 ConditionInterface * * @param array $conditions Array of ConditionInterface * * @return array Array of ConditionInterface sorted */ public function organize(array $conditions); }