id; } /** * Set type * * @param int $type Type * * @return void * * @since 1.0.0 */ public function setType(int $type) : void { $this->type = $type; } /** * Get type * * @return int * * @since 1.0.0 */ public function getType() : int { return $this->type; } /** * Get content * * @return string * * @since 1.0.0 */ public function getContent() : string { return $this->content; } /** * Set content * * @param string $content Content * * @return void * * @since 1.0.0 */ public function setContent(string $content) : void { $this->content = $content; } }