src/Entity/Security/User.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Security;
  3. use App\Repository\Security\UserRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
  8. use Symfony\Component\Security\Core\User\UserInterface;
  9. #[ORM\Entity(repositoryClassUserRepository::class)]
  10. #[ORM\Table(name'`user`')]
  11. class User implements UserInterfacePasswordAuthenticatedUserInterface
  12. {
  13.     #[ORM\Id]
  14.     #[ORM\GeneratedValue]
  15.     #[ORM\Column]
  16.     private ?int $id null;
  17.     #[ORM\Column(length180uniquetrue)]
  18.     private ?string $username null;
  19.     #[ORM\Column(length255uniquetrue)]
  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\OneToMany(mappedBy'user'targetEntityOrder::class, orphanRemovaltrue)]
  29.     private Collection $orders;
  30.     public function __construct()
  31.     {
  32.         $this->orders = new ArrayCollection();
  33.     }
  34.     public function getId(): ?int
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getUsername(): ?string
  39.     {
  40.         return $this->username;
  41.     }
  42.     public function setUsername(string $username): static
  43.     {
  44.         $this->username $username;
  45.         return $this;
  46.     }
  47.     public function getEmail(): ?string
  48.     {
  49.         return $this->email;
  50.     }
  51.     public function setEmail(?string $email): self
  52.     {
  53.         $this->email $email;
  54.         return $this;
  55.     }
  56.     /**
  57.      * A visual identifier that represents this user.
  58.      *
  59.      * @see UserInterface
  60.      */
  61.     public function getUserIdentifier(): string
  62.     {
  63.         return (string) $this->username;
  64.     }
  65.     /**
  66.      * @see UserInterface
  67.      */
  68.     public function getRoles(): array
  69.     {
  70.         $roles $this->roles;
  71.         // guarantee every user at least has ROLE_USER
  72.         $roles[] = 'ROLE_USER';
  73.         return array_unique($roles);
  74.     }
  75.     public function setRoles(array $roles): static
  76.     {
  77.         $this->roles $roles;
  78.         return $this;
  79.     }
  80.     /**
  81.      * @see PasswordAuthenticatedUserInterface
  82.      */
  83.     public function getPassword(): string
  84.     {
  85.         return $this->password;
  86.     }
  87.     public function setPassword(string $password): static
  88.     {
  89.         $this->password $password;
  90.         return $this;
  91.     }
  92.     /**
  93.      * @see UserInterface
  94.      */
  95.     public function eraseCredentials(): void
  96.     {
  97.         // If you store any temporary, sensitive data on the user, clear it here
  98.         // $this->plainPassword = null;
  99.     }
  100.     /**
  101.      * @return Collection<int, Order>
  102.      */
  103.     public function getOrders(): Collection
  104.     {
  105.         return $this->orders;
  106.     }
  107.     public function addOrder(Order $order): static
  108.     {
  109.         if (!$this->orders->contains($order)) {
  110.             $this->orders->add($order);
  111.             $order->setUser($this);
  112.         }
  113.         return $this;
  114.     }
  115.     public function removeOrder(Order $order): static
  116.     {
  117.         if ($this->orders->removeElement($order)) {
  118.             // set the owning side to null (unless already changed)
  119.             if ($order->getUser() === $this) {
  120.                 $order->setUser(null);
  121.             }
  122.         }
  123.         return $this;
  124.     }
  125. }