$value) { $func = 'set'. ucfirst($name); if (method_exists($this, $func)) { $this->$func($value); } } return $this; } /** * Get this class's structure as array * * @return array */ public function toArray() { return []; } }