/** * 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->One->set_expr($property, $value); return $this; }