``` public function get($fieldName) { if (property_exists($this, $fieldName)) { return $this->$fieldName; } return null; } ```