src/Entity/User.php line 15

  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(type'boolean')]
  28.     private $isVerified false;
  29.     #[ORM\OneToMany(mappedBy'user'targetEntityComments::class)]
  30.     private Collection $comments;
  31.     #[ORM\Column(length255)]
  32.     private ?string $firstName null;
  33.     #[ORM\Column(length255)]
  34.     private ?string $lastName null;
  35.     #[ORM\Column(length1)]
  36.     private ?string $sexe null;
  37.     public function __construct()
  38.     {
  39.         $this->comments = 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 isVerified(): bool
  99.     {
  100.         return $this->isVerified;
  101.     }
  102.     public function setIsVerified(bool $isVerified): self
  103.     {
  104.         $this->isVerified $isVerified;
  105.         return $this;
  106.     }
  107.     /**
  108.      * @return Collection<int, Comments>
  109.      */
  110.     public function getComments(): Collection
  111.     {
  112.         return $this->comments;
  113.     }
  114.     public function addComment(Comments $comment): self
  115.     {
  116.         if (!$this->comments->contains($comment)) {
  117.             $this->comments->add($comment);
  118.             $comment->setUser($this);
  119.         }
  120.         return $this;
  121.     }
  122.     public function removeComment(Comments $comment): self
  123.     {
  124.         if ($this->comments->removeElement($comment)) {
  125.             // set the owning side to null (unless already changed)
  126.             if ($comment->getUser() === $this) {
  127.                 $comment->setUser(null);
  128.             }
  129.         }
  130.         return $this;
  131.     }
  132.     public function getFirstName(): ?string
  133.     {
  134.         return $this->firstName;
  135.     }
  136.     public function setFirstName(string $firstName): self
  137.     {
  138.         $this->firstName $firstName;
  139.         return $this;
  140.     }
  141.     public function getLastName(): ?string
  142.     {
  143.         return $this->lastName;
  144.     }
  145.     public function setLastName(string $lastName): self
  146.     {
  147.         $this->lastName $lastName;
  148.         return $this;
  149.     }
  150.     public function getSexe(): ?string
  151.     {
  152.         return $this->sexe;
  153.     }
  154.     public function setSexe(string $sexe): self
  155.     {
  156.         $this->sexe $sexe;
  157.         return $this;
  158.     }
  159. }