employeeskills; } public function setEmployeeskills(Collection $employeeskills): void { $this->employeeskills = $employeeskills; } public function getEmployeemissions(): Collection { return $this->employeemissions; } public function setEmployeemissions(Collection $employeemissions): void { $this->employeemissions = $employeemissions; } public function getEmployeeincidents(): Collection { return $this->employeeincidents; } public function setEmployeeincidents(Collection $employeeincidents): void { $this->employeeincidents = $employeeincidents; } public function getAssignments(): Collection { return $this->assignments; } public function setAssignments(Collection $assignments): void { $this->assignments = $assignments; } public function getRepresentations(): Collection { return $this->representations; } public function setRepresentations(Collection $representations): void { $this->representations = $representations; } public function getId(): ?int { return $this->id; } public function setId(int $id): static { $this->id = $id; return $this; } public function getEmail(): ?string { return $this->email; } public function setEmail(string $email): static { $this->email = $email; return $this; } public function getFirstName(): ?string { return $this->firstName; } public function setFirstName(string $firstName): static { $this->firstName = $firstName; return $this; } public function getLastName(): ?string { return $this->lastName; } public function setLastName(string $lastName): static { $this->lastName = $lastName; return $this; } public function getPassword(): ?string { return $this->password; } public function setPassword(string $password): static { $this->password = $password; return $this; } public function eraseCredentials(): void { // If you store any temporary, sensitive data on the user, clear it here // $this->plainPassword = null; } public function getUserIdentifier(): string { return (string) $this->email; } }