content_id = $content_id; $this->title = $title; $this->has_description = $has_description; } /** * Returns the content item ID. * * @return int */ public function get_content_id(): int { return $this->content_id; } /** * Returns the content item title. * * @return string */ public function get_title(): string { return $this->title; } /** * Returns whether the content item has a custom meta description. * * @return bool */ public function has_description(): bool { return $this->has_description; } }