createdAt = new DateTime('now'); $this->updatedAt = new DateTime('now'); } /** * @return int */ public function getId() { return $this->id; } /** * @return Skill */ public function getSkill() { return $this->skill; } /** * @param Skill $skill * * @return SkillRelCourse */ public function setSkill($skill) { $this->skill = $skill; return $this; } /** * @return Course */ public function getCourse() { return $this->course; } /** * @param Course $course * * @return SkillRelCourse */ public function setCourse($course) { $this->course = $course; return $this; } /** * @return Session */ public function getSession() { return $this->session; } /** * @param Session $session * * @return SkillRelCourse */ public function setSession($session) { $this->session = $session; return $this; } /** * @return DateTime */ public function getCreatedAt() { return $this->createdAt; } /** * @param DateTime $createdAt * * @return SkillRelCourse */ public function setCreatedAt($createdAt) { $this->createdAt = $createdAt; return $this; } /** * @return DateTime */ public function getUpdatedAt() { return $this->updatedAt; } /** * @param DateTime $updatedAt * * @return SkillRelCourse */ public function setUpdatedAt($updatedAt) { $this->updatedAt = $updatedAt; return $this; } }