src/Entity/User.php line 16

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. #[ORM\Table(name'`user`')]
  12. #[UniqueEntity(fields: ['email'], message'There is already an account with this email')]
  13. class User implements UserInterfacePasswordAuthenticatedUserInterface
  14. {
  15.     #[ORM\Id]
  16.     #[ORM\GeneratedValue]
  17.     #[ORM\Column]
  18.     private ?int $id null;
  19.     #[ORM\Column(length180uniquetrue)]
  20.     private ?string $email null;
  21.     #[ORM\Column]
  22.     private array $roles = [];
  23.     /**
  24.      * @var string The hashed password
  25.      */
  26.     #[ORM\Column]
  27.     private ?string $password null;
  28.     #[ORM\Column(type'boolean')]
  29.     private $isVerified false;
  30.     #[ORM\Column(length255)]
  31.     private ?string $nom null;
  32.     #[ORM\Column(length255)]
  33.     private ?string $phone null;
  34.     #[ORM\Column(length255nullabletrue)]
  35.     private ?string $genre null;
  36.     #[ORM\Column(length255nullabletrue)]
  37.     private ?string $ville null;
  38.     #[ORM\Column(length255nullabletrue)]
  39.     private ?string $adresse null;
  40.     #[ORM\Column]
  41.     private ?\DateTimeImmutable $created_at null;
  42.     #[ORM\Column]
  43.     private ?bool $actif null;
  44.     #[ORM\OneToMany(mappedBy'user'targetEntityBoutiques::class)]
  45.     private Collection $boutiques;
  46.     #[ORM\ManyToOne(inversedBy'users')]
  47.     private ?Boutiques $boutique null;
  48.     #[ORM\OneToMany(mappedBy'recepteur'targetEntityNotifications::class)]
  49.     private Collection $notifications;
  50.     #[ORM\OneToMany(mappedBy'auteur'targetEntityCommandes::class)]
  51.     private Collection $commandes;
  52.     #[ORM\Column(length255nullabletrue)]
  53.     private ?string $clear null;
  54.     #[ORM\OneToMany(mappedBy'user'targetEntityArticle::class, orphanRemovaltrue)]
  55.     private Collection $articles;
  56.     public function __construct()
  57.     {
  58.         $this->boutiques = new ArrayCollection();
  59.         $this->notifications = new ArrayCollection();
  60.         $this->commandes = new ArrayCollection();
  61.         $this->articles = new ArrayCollection();
  62.     }
  63.     public function getId(): ?int
  64.     {
  65.         return $this->id;
  66.     }
  67.     public function getEmail(): ?string
  68.     {
  69.         return $this->email;
  70.     }
  71.     public function setEmail(string $email): static
  72.     {
  73.         $this->email $email;
  74.         return $this;
  75.     }
  76.     /**
  77.      * A visual identifier that represents this user.
  78.      *
  79.      * @see UserInterface
  80.      */
  81.     public function getUserIdentifier(): string
  82.     {
  83.         return (string) $this->email;
  84.     }
  85.     /**
  86.      * @see UserInterface
  87.      */
  88.     public function getRoles(): array
  89.     {
  90.         $roles $this->roles;
  91.         // guarantee every user at least has ROLE_USER
  92.         $roles[] = 'ROLE_USER';
  93.         return array_unique($roles);
  94.     }
  95.     public function setRoles(array $roles): static
  96.     {
  97.         $this->roles $roles;
  98.         return $this;
  99.     }
  100.     /**
  101.      * @see PasswordAuthenticatedUserInterface
  102.      */
  103.     public function getPassword(): string
  104.     {
  105.         return $this->password;
  106.     }
  107.     public function setPassword(string $password): static
  108.     {
  109.         $this->password $password;
  110.         return $this;
  111.     }
  112.     /**
  113.      * @see UserInterface
  114.      */
  115.     public function eraseCredentials(): void
  116.     {
  117.         // If you store any temporary, sensitive data on the user, clear it here
  118.         // $this->plainPassword = null;
  119.     }
  120.     public function isVerified(): bool
  121.     {
  122.         return $this->isVerified;
  123.     }
  124.     public function setIsVerified(bool $isVerified): static
  125.     {
  126.         $this->isVerified $isVerified;
  127.         return $this;
  128.     }
  129.     public function getNom(): ?string
  130.     {
  131.         return $this->nom;
  132.     }
  133.     public function setNom(string $nom): static
  134.     {
  135.         $this->nom $nom;
  136.         return $this;
  137.     }
  138.     public function getPhone(): ?string
  139.     {
  140.         return $this->phone;
  141.     }
  142.     public function setPhone(string $phone): static
  143.     {
  144.         $this->phone $phone;
  145.         return $this;
  146.     }
  147.     public function getGenre(): ?string
  148.     {
  149.         return $this->genre;
  150.     }
  151.     public function setGenre(?string $genre): static
  152.     {
  153.         $this->genre $genre;
  154.         return $this;
  155.     }
  156.     public function getVille(): ?string
  157.     {
  158.         return $this->ville;
  159.     }
  160.     public function setVille(?string $ville): static
  161.     {
  162.         $this->ville $ville;
  163.         return $this;
  164.     }
  165.     public function getAdresse(): ?string
  166.     {
  167.         return $this->adresse;
  168.     }
  169.     public function setAdresse(?string $adresse): static
  170.     {
  171.         $this->adresse $adresse;
  172.         return $this;
  173.     }
  174.     public function getCreatedAt(): ?\DateTimeImmutable
  175.     {
  176.         return $this->created_at;
  177.     }
  178.     public function setCreatedAt(\DateTimeImmutable $created_at): static
  179.     {
  180.         $this->created_at $created_at;
  181.         return $this;
  182.     }
  183.     public function isActif(): ?bool
  184.     {
  185.         return $this->actif;
  186.     }
  187.     public function setActif(bool $actif): static
  188.     {
  189.         $this->actif $actif;
  190.         return $this;
  191.     }
  192.     /**
  193.      * @return Collection<int, Boutiques>
  194.      */
  195.     public function getBoutiques(): Collection
  196.     {
  197.         return $this->boutiques;
  198.     }
  199.     public function addBoutique(Boutiques $boutique): static
  200.     {
  201.         if (!$this->boutiques->contains($boutique)) {
  202.             $this->boutiques->add($boutique);
  203.             $boutique->setUser($this);
  204.         }
  205.         return $this;
  206.     }
  207.     public function removeBoutique(Boutiques $boutique): static
  208.     {
  209.         if ($this->boutiques->removeElement($boutique)) {
  210.             // set the owning side to null (unless already changed)
  211.             if ($boutique->getUser() === $this) {
  212.                 $boutique->setUser(null);
  213.             }
  214.         }
  215.         return $this;
  216.     }
  217.     public function getBoutique(): ?Boutiques
  218.     {
  219.         return $this->boutique;
  220.     }
  221.     public function setBoutique(?Boutiques $boutique): static
  222.     {
  223.         $this->boutique $boutique;
  224.         return $this;
  225.     }
  226.     /**
  227.      * @return Collection<int, Notifications>
  228.      */
  229.     public function getNotifications(): Collection
  230.     {
  231.         return $this->notifications;
  232.     }
  233.     public function addNotification(Notifications $notification): static
  234.     {
  235.         if (!$this->notifications->contains($notification)) {
  236.             $this->notifications->add($notification);
  237.             $notification->setRecepteur($this);
  238.         }
  239.         return $this;
  240.     }
  241.     public function removeNotification(Notifications $notification): static
  242.     {
  243.         if ($this->notifications->removeElement($notification)) {
  244.             // set the owning side to null (unless already changed)
  245.             if ($notification->getRecepteur() === $this) {
  246.                 $notification->setRecepteur(null);
  247.             }
  248.         }
  249.         return $this;
  250.     }
  251.     /**
  252.      * @return Collection<int, Commandes>
  253.      */
  254.     public function getCommandes(): Collection
  255.     {
  256.         return $this->commandes;
  257.     }
  258.     public function addCommande(Commandes $commande): static
  259.     {
  260.         if (!$this->commandes->contains($commande)) {
  261.             $this->commandes->add($commande);
  262.             $commande->setAuteur($this);
  263.         }
  264.         return $this;
  265.     }
  266.     public function removeCommande(Commandes $commande): static
  267.     {
  268.         if ($this->commandes->removeElement($commande)) {
  269.             // set the owning side to null (unless already changed)
  270.             if ($commande->getAuteur() === $this) {
  271.                 $commande->setAuteur(null);
  272.             }
  273.         }
  274.         return $this;
  275.     }
  276.     public function getClear(): ?string
  277.     {
  278.         return $this->clear;
  279.     }
  280.     public function setClear(?string $clear): static
  281.     {
  282.         $this->clear $clear;
  283.         return $this;
  284.     }
  285.     /**
  286.      * @return Collection<int, Article>
  287.      */
  288.     public function getArticles(): Collection
  289.     {
  290.         return $this->articles;
  291.     }
  292.     public function addArticle(Article $article): static
  293.     {
  294.         if (!$this->articles->contains($article)) {
  295.             $this->articles->add($article);
  296.             $article->setUser($this);
  297.         }
  298.         return $this;
  299.     }
  300.     public function removeArticle(Article $article): static
  301.     {
  302.         if ($this->articles->removeElement($article)) {
  303.             // set the owning side to null (unless already changed)
  304.             if ($article->getUser() === $this) {
  305.                 $article->setUser(null);
  306.             }
  307.         }
  308.         return $this;
  309.     }
  310. }