WIP : Refactor contraint/rule becomes conditions (more generic)

This commit is contained in:
gmorel
2013-09-25 14:51:42 +02:00
parent cb389f126c
commit d6172f23cf
75 changed files with 582 additions and 2787 deletions

View File

@@ -37,11 +37,11 @@ namespace Thelia\Coupon;
interface RuleOrganizerInterface
{
/**
* Organize CouponRuleInterface
* Organize ConditionManagerInterface
*
* @param array $rules Array of CouponRuleInterface
* @param array $rules Array of ConditionManagerInterface
*
* @return array Array of CouponRuleInterface sorted
* @return array Array of ConditionManagerInterface sorted
*/
public function organize(array $rules);
}