user = $user; $this->title = $title; $this->value = $value; $this->metadata = $metadata; } /** * @return User */ public function getUser() { return $this->user; } /** * @return Title */ public function getTitle() { return $this->title; } /** * @return string */ public function getValue() { return $this->value; } /** * @return array|null */ public function getMetadata() { return $this->metadata; } }