-
Notifications
You must be signed in to change notification settings - Fork 132
Closed
Description
/**
* Setter method, allows $model->set('property', 'value') access to data.
*
* @param string|array $property
* @param string|null $value
* @return void
*/
public function set($property, $value = null) {
$this->orm->set($property, $value);
return $this;
}
/**
* Setter method, allows $model->set_expr('property', 'value') access to data.
*
* @param string|array $property
* @param string|null $value
* @return void
*/
public function set_expr($property, $value = null) {
$this->orm->set_expr($property, $value);
return $this;
}
void instead of Model.
Metadata
Metadata
Assignees
Labels
No labels