type = $type; $this->entry = $entry; $this->createdAt = new \DateTime(); } /** * @return int */ public function getId() { return $this->id; } /** * @return int */ public function getType() { return $this->type; } /** * @return DateTime */ public function getCreatedAt() { return $this->createdAt; } /** * @return Entry */ public function getEntry() { return $this->entry; } }