WIP : Condition : Fix unit text

This commit is contained in:
gmorel
2013-09-25 18:15:48 +02:00
parent 965a505864
commit 4d3335f589
6 changed files with 292 additions and 29 deletions

View File

@@ -45,33 +45,33 @@ class SerializableCondition
/** @var array Values set by Admin for this Condition */
public $values = array();
/**
* Get Operators set by Admin for this Condition
*
* @return array
*/
public function getOperators()
{
return $this->operators;
}
/**
* Get Condition Service id
*
* @return string
*/
public function getConditionServiceId()
{
return $this->conditionServiceId;
}
/**
* Get Values set by Admin for this Condition
*
* @return array
*/
public function getValues()
{
return $this->values;
}
// /**
// * Get Operators set by Admin for this Condition
// *
// * @return array
// */
// public function getOperators()
// {
// return $this->operators;
// }
//
// /**
// * Get Condition Service id
// *
// * @return string
// */
// public function getConditionServiceId()
// {
// return $this->conditionServiceId;
// }
//
// /**
// * Get Values set by Admin for this Condition
// *
// * @return array
// */
// public function getValues()
// {
// return $this->values;
// }
}