src/Entity/Users.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\UsersRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  6. use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
  7. use Symfony\Component\Security\Core\User\UserInterface;
  8. /**
  9.  * @ORM\Entity(repositoryClass=UsersRepository::class)
  10.  * @UniqueEntity(fields={"email"}, message="Il existe déjà un compte avec cet email")
  11.  */
  12. class Users implements UserInterfacePasswordAuthenticatedUserInterface
  13. {
  14.     /**
  15.      * @ORM\Id
  16.      * @ORM\GeneratedValue
  17.      * @ORM\Column(type="integer")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @ORM\Column(type="string", length=180, unique=true)
  22.      */
  23.     private $email;
  24.     /**
  25.      * @ORM\Column(type="json")
  26.      */
  27.     private $roles = [];
  28.     /**
  29.      * @var string The hashed password
  30.      * @ORM\Column(type="string")
  31.      */
  32.     private $password;
  33.     /**
  34.      * @ORM\Column(type="boolean")
  35.      */
  36.     private $isVerified false;
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getEmail(): ?string
  42.     {
  43.         return $this->email;
  44.     }
  45.     public function setEmail(string $email): self
  46.     {
  47.         $this->email $email;
  48.         return $this;
  49.     }
  50.     /**
  51.      * A visual identifier that represents this user.
  52.      *
  53.      * @see UserInterface
  54.      */
  55.     public function getUserIdentifier(): string
  56.     {
  57.         return (string) $this->email;
  58.     }
  59.     /**
  60.      * @deprecated since Symfony 5.3, use getUserIdentifier instead
  61.      */
  62.     public function getUsername(): string
  63.     {
  64.         return (string) $this->email;
  65.     }
  66.     /**
  67.      * @see UserInterface
  68.      */
  69.     public function getRoles(): array
  70.     {
  71.         $roles $this->roles;
  72.         // guarantee every user at least has ROLE_USER
  73.         $roles[] = 'ROLE_USER';
  74.         return array_unique($roles);
  75.     }
  76.     public function setRoles(array $roles): self
  77.     {
  78.         $this->roles $roles;
  79.         return $this;
  80.     }
  81.     /**
  82.      * @see PasswordAuthenticatedUserInterface
  83.      */
  84.     public function getPassword(): string
  85.     {
  86.         return $this->password;
  87.     }
  88.     public function setPassword(string $password): self
  89.     {
  90.         $this->password $password;
  91.         return $this;
  92.     }
  93.     /**
  94.      * Returning a salt is only needed, if you are not using a modern
  95.      * hashing algorithm (e.g. bcrypt or sodium) in your security.yaml.
  96.      *
  97.      * @see UserInterface
  98.      */
  99.     public function getSalt(): ?string
  100.     {
  101.         return null;
  102.     }
  103.     /**
  104.      * @see UserInterface
  105.      */
  106.     public function eraseCredentials()
  107.     {
  108.         // If you store any temporary, sensitive data on the user, clear it here
  109.         // $this->plainPassword = null;
  110.     }
  111.     public function isVerified(): bool
  112.     {
  113.         return $this->isVerified;
  114.     }
  115.     public function setIsVerified(bool $isVerified): self
  116.     {
  117.         $this->isVerified $isVerified;
  118.         return $this;
  119.     }
  120. }