Beispiel #1
0
 /**
  * Setter method, allows $model->set_expr('property', 'value') access to data.
  *
  * @param  string|array $property
  * @param  string|null  $value
  *
  * @return Model
  */
 public function set_expr($property, $value = null)
 {
     $this->orm->set_expr($property, $value);
     return $this;
 }