src/Entity/User.php line 13

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\UserRepository;
  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. #[ORM\Entity(repositoryClassUserRepository::class)]
  9. #[UniqueEntity(fields: ['email'], message'There is already an account with this email')]
  10. class User implements UserInterfacePasswordAuthenticatedUserInterface
  11. {
  12.     #[ORM\Id]
  13.     #[ORM\GeneratedValue]
  14.     #[ORM\Column]
  15.     private ?int $id null;
  16.     #[ORM\Column(length180uniquetrue)]
  17.     private ?string $email null;
  18.     #[ORM\Column]
  19.     private array $roles = [];
  20.     /**
  21.      * @var string The hashed password
  22.      */
  23.     #[ORM\Column]
  24.     private ?string $password null;
  25.     public function getId(): ?int
  26.     {
  27.         return $this->id;
  28.     }
  29.     public function getEmail(): ?string
  30.     {
  31.         return $this->email;
  32.     }
  33.     public function setEmail(string $email): self
  34.     {
  35.         $this->email $email;
  36.         return $this;
  37.     }
  38.     /**
  39.      * A visual identifier that represents this user.
  40.      *
  41.      * @see UserInterface
  42.      */
  43.     public function getUserIdentifier(): string
  44.     {
  45.         return (string) $this->email;
  46.     }
  47.     /**
  48.      * @see UserInterface
  49.      */
  50.     public function getRoles(): array
  51.     {
  52.         $roles $this->roles;
  53.         // guarantee every user at least has ROLE_USER
  54.         $roles[] = 'ROLE_USER';
  55.         return array_unique($roles);
  56.     }
  57.     public function setRoles(array $roles): self
  58.     {
  59.         $this->roles $roles;
  60.         return $this;
  61.     }
  62.     /**
  63.      * @see PasswordAuthenticatedUserInterface
  64.      */
  65.     public function getPassword(): string
  66.     {
  67.         return $this->password;
  68.     }
  69.     public function setPassword(string $password): self
  70.     {
  71.         $this->password $password;
  72.         return $this;
  73.     }
  74.     /**
  75.      * @see UserInterface
  76.      */
  77.     public function eraseCredentials()
  78.     {
  79.         // If you store any temporary, sensitive data on the user, clear it here
  80.         // $this->plainPassword = null;
  81.     }
  82. }