id; } public function setTitle($title) { $this->title = $title; } public function getTitle() { return $this->title; } /** * Get created * * @return datetime $created */ public function getCreated() { return $this->created; } public function setCreated(\DateTime $created) { $this->created = $created; } /** * Get updated * * @return datetime $updated */ public function getUpdated() { return $this->updated; } public function setUpdated(\DateTime $updated) { $this->updated = $updated; } }