. */ /* */ /**********************************************************************************/ namespace Thelia\Condition; /** * A condition ready to be serialized and stored in DataBase * * @package Condition * @author Guillaume MOREL * */ class SerializableCondition { /** @var string Condition Service id */ public $conditionServiceId = null; /** @var array Operators set by Admin for this Condition */ public $operators = array(); /** @var array Values set by Admin for this Condition */ public $values = array(); }