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