set() публичный Метод

Set the native value of an Attribute.
public set ( string $strAttributeName, mixed $varValue ) : metamodels\IItem
$strAttributeName string The name of the attribute.
$varValue mixed The value of the attribute.
Результат metamodels\IItem
 /**
  * Set the value of the Attribute from given MetaModels Item
  */
 public function setValue($value)
 {
     $this->item->set($this->field->getColName(), $this->field->mmAttribute->widgetToValue($value, null));
 }