id; } /** * @param int $id * @return Employee3 */ public function setId(int $id): Employee3 { $this->id = $id; return $this; } /** * @return string */ public function getJob(): string { return $this->job; } /** * @param string $job * @return Employee3 */ public function setJob(string $job): Employee3 { $this->job = $job; return $this; } }