entity = $company; $this->isNew = $isNew; } /** * Returns the Company entity. * * @return Company */ public function getCompany() { return $this->entity; } /** * Sets the Company entity. */ public function setCompany(Company $company): void { $this->entity = $company; } public function changeScore($score): void { $this->score = $score; } public function getScore() { return $this->score; } }