Files
sterivein/core/lib/Thelia/Condition/ConditionOrganizerInterface.php
2014-04-18 09:36:41 +02:00

33 lines
1.3 KiB
PHP

<?php
/*************************************************************************************/
/* This file is part of the Thelia package. */
/* */
/* Copyright (c) OpenStudio */
/* email : dev@thelia.net */
/* web : http://www.thelia.net */
/* */
/* For the full copyright and license information, please view the LICENSE.txt */
/* file that was distributed with this source code. */
/*************************************************************************************/
namespace Thelia\Condition;
/**
* Manage how Condition could interact with each other
*
* @package Condition
* @author Guillaume MOREL <gmorel@openstudio.fr>
*
*/
interface ConditionOrganizerInterface
{
/**
* Organize ConditionInterface
*
* @param array $conditions Array of ConditionInterface
*
* @return array Array of ConditionInterface sorted
*/
public function organize(array $conditions);
}