src/Entity/User.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\UserRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  8. use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
  9. use Symfony\Component\Security\Core\User\UserInterface;
  10. #[ORM\Entity(repositoryClassUserRepository::class)]
  11. #[UniqueEntity(fields: ['email'], message'There is already an account with this email')]
  12. class User implements UserInterfacePasswordAuthenticatedUserInterface
  13. {
  14.     #[ORM\Id]
  15.     #[ORM\GeneratedValue]
  16.     #[ORM\Column]
  17.     private ?int $id null;
  18.     #[ORM\Column(length180uniquetrue)]
  19.     private ?string $email null;
  20.     #[ORM\Column]
  21.     private array $roles = [];
  22.     /**
  23.      * @var string The hashed password
  24.      */
  25.     #[ORM\Column]
  26.     private ?string $password null;
  27.     #[ORM\Column(length255)]
  28.     private ?string $role null;
  29.     #[ORM\Column(length255)]
  30.     private ?string $nom null;
  31.     public function __toString(): string
  32.     {
  33.         return $this->getNom();
  34.     }
  35.     #[ORM\OneToMany(mappedBy'intervenant'targetEntitySuivi::class)]
  36.     private Collection $suivis;
  37.     public function __construct()
  38.     {
  39.         $this->suivis = new ArrayCollection();
  40.     }
  41.     public function getId(): ?int
  42.     {
  43.         return $this->id;
  44.     }
  45.     public function getEmail(): ?string
  46.     {
  47.         return $this->email;
  48.     }
  49.     public function setEmail(string $email): self
  50.     {
  51.         $this->email $email;
  52.         return $this;
  53.     }
  54.     /**
  55.      * A visual identifier that represents this user.
  56.      *
  57.      * @see UserInterface
  58.      */
  59.     public function getUserIdentifier(): string
  60.     {
  61.         return (string) $this->email;
  62.     }
  63.     /*/**
  64.      * @see UserInterface
  65.      */
  66.     public function getRoles(): array
  67.     {
  68.         $roles $this->roles;
  69.         // guarantee every user at least has ROLE_USER
  70.         $roles[] = 'ROLE_USER';
  71.         return array_unique($roles);
  72.     }
  73.     public function setRoles(array $roles): self
  74.     {
  75.         $this->roles $roles;
  76.         return $this;
  77.     }
  78.     /**
  79.      * @see PasswordAuthenticatedUserInterface
  80.      */
  81.     public function getPassword(): string
  82.     {
  83.         return $this->password;
  84.     }
  85.     public function setPassword(string $password): self
  86.     {
  87.         $this->password $password;
  88.         return $this;
  89.     }
  90.     /**
  91.      * @see UserInterface
  92.      */
  93.     public function eraseCredentials()
  94.     {
  95.         // If you store any temporary, sensitive data on the user, clear it here
  96.         // $this->plainPassword = null;
  97.     }
  98.     public function getRole(): ?string
  99.     {
  100.         return $this->role;
  101.     }
  102.     public function setRole(string $role): self
  103.     {
  104.         $this->role $role;
  105.         return $this;
  106.     }
  107.     public function getNom(): ?string
  108.     {
  109.         return $this->nom;
  110.     }
  111.     public function setNom(string $nom): self
  112.     {
  113.         $this->nom $nom;
  114.         return $this;
  115.     }
  116.     /**
  117.      * @return Collection<int, Suivi>
  118.      */
  119.     public function getSuivis(): Collection
  120.     {
  121.         return $this->suivis;
  122.     }
  123.     public function addSuivi(Suivi $suivi): self
  124.     {
  125.         if (!$this->suivis->contains($suivi)) {
  126.             $this->suivis->add($suivi);
  127.             $suivi->setIntervenant($this);
  128.         }
  129.         return $this;
  130.     }
  131.     public function removeSuivi(Suivi $suivi): self
  132.     {
  133.         if ($this->suivis->removeElement($suivi)) {
  134.             // set the owning side to null (unless already changed)
  135.             if ($suivi->getIntervenant() === $this) {
  136.                 $suivi->setIntervenant(null);
  137.             }
  138.         }
  139.         return $this;
  140.     }
  141. }