name = $offername; $this->company = $offercompany; $this->recruiter = $offermanager; $this->description = $description; } /** * @return string */ public function getName(): string { return $this->name; } /** * @return string */ public function getCompany(): string { return $this->company; } /** * @return Compte|string */ public function getRecruiter(): Compte|string { return $this->recruiter; } /** * @return string */ public function getDescription(): string { return $this->description; } }