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 Symfony\Component\Validator\Constraints as Assert;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  9. use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
  10. use Symfony\Component\Security\Core\User\UserInterface;
  11. #[ORM\Entity(repositoryClassUserRepository::class)]
  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;
  19.     #[ORM\Column(length180uniquetrue)]
  20.     #[Assert\NotBlank]
  21.     #[Assert\Email]
  22.     private string $email;
  23.     #[ORM\Column]
  24.     private array $roles = ['User'];
  25.     #[ORM\Column]
  26.     private string $password;
  27.     #[ORM\Column(length255)]
  28.     #[Assert\NotBlank]
  29.     private string $firstname;
  30.     #[ORM\Column(length255)]
  31.     #[Assert\NotBlank]
  32.     private string $lastname;
  33.     #[ORM\Column(length255)]
  34.     #[Assert\NotBlank]
  35.     private string $city;
  36.     #[ORM\Column(length255)]
  37.     #[Assert\NotBlank]
  38.     private string $street;
  39.     #[ORM\Column(length255nullabletrue)]
  40.     private ?string $street2 null;
  41.     #[ORM\Column(length255)]
  42.     #[Assert\NotBlank]
  43.     private string $country;
  44.     #[ORM\Column(length255)]
  45.     #[Assert\NotBlank]
  46.     private string $zipcode;
  47.     #[ORM\OneToMany(mappedBy'userId'targetEntityOrder::class)]
  48.     private Collection $orders;
  49.     #[ORM\Column]
  50.     private bool $terms;
  51.     #[ORM\Column(length255nullabletrue)]
  52.     private ?string $ip null;
  53.     #[ORM\Column(length255nullabletrue)]
  54.     private ?string $token null;
  55.     #[ORM\Column(type'boolean')]
  56.     private $isVerified false;
  57.     #[ORM\Column(length255)]
  58.     private ?string $phone null;
  59.     public function __construct()
  60.     {
  61.         $this->orders = 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): self
  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): self
  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): self
  108.     {
  109.         $this->password $password;
  110.         return $this;
  111.     }
  112.     /**
  113.      * @see UserInterface
  114.      */
  115.     public function eraseCredentials()
  116.     {
  117.         // If you store any temporary, sensitive data on the user, clear it here
  118.         // $this->plainPassword = null;
  119.     }
  120.     public function getFirstname(): string
  121.     {
  122.         return $this->firstname;
  123.     }
  124.     public function setFirstname(string $firstname): self
  125.     {
  126.         $this->firstname $firstname;
  127.         return $this;
  128.     }
  129.     public function getLastname(): string
  130.     {
  131.         return $this->lastname;
  132.     }
  133.     public function setLastname(string $lastname): self
  134.     {
  135.         $this->lastname $lastname;
  136.         return $this;
  137.     }
  138.     public function getCity(): string
  139.     {
  140.         return $this->city;
  141.     }
  142.     public function setCity(string $city): self
  143.     {
  144.         $this->city $city;
  145.         return $this;
  146.     }
  147.     public function getStreet(): string
  148.     {
  149.         return $this->street;
  150.     }
  151.     public function setStreet(string $street): self
  152.     {
  153.         $this->street $street;
  154.         return $this;
  155.     }
  156.     public function getStreet2(): ?string
  157.     {
  158.         return $this->street2;
  159.     }
  160.     public function setStreet2(?string $street2): self
  161.     {
  162.         $this->street2 $street2;
  163.         return $this;
  164.     }
  165.     public function getCountry(): string
  166.     {
  167.         return $this->country;
  168.     }
  169.     public function setCountry(string $country): self
  170.     {
  171.         $this->country $country;
  172.         return $this;
  173.     }
  174.     public function getZipcode(): string
  175.     {
  176.         return $this->zipcode;
  177.     }
  178.     public function setZipcode(string $zipcode): self
  179.     {
  180.         $this->zipcode $zipcode;
  181.         return $this;
  182.     }
  183.     /**
  184.      * @return Collection<int, Order>
  185.      */
  186.     public function getOrders(): Collection
  187.     {
  188.         return $this->orders;
  189.     }
  190.     public function addOrder(Order $order): self
  191.     {
  192.         if (!$this->orders->contains($order)) {
  193.             $this->orders->add($order);
  194.             $order->setUser($this);
  195.         }
  196.         return $this;
  197.     }
  198.     public function removeOrder(Order $order): self
  199.     {
  200.         if ($this->orders->removeElement($order)) {
  201.             // set the owning side to null (unless already changed)
  202.             if ($order->getUser() === $this) {
  203.                 $order->setUser(null);
  204.             }
  205.         }
  206.         return $this;
  207.     }
  208.     public function isTerms(): ?bool
  209.     {
  210.         return $this->terms;
  211.     }
  212.     public function setTerms(bool $terms): self
  213.     {
  214.         $this->terms $terms;
  215.         return $this;
  216.     }
  217.     public function isVerified(): ?bool
  218.     {
  219.         return $this->isVerified;
  220.     }
  221.     public function getIp(): ?string
  222.     {
  223.         return $this->ip;
  224.     }
  225.     public function setIp(?string $ip): self
  226.     {
  227.         $this->ip $ip;
  228.         return $this;
  229.     }
  230.     public function getToken(): ?string
  231.     {
  232.         return $this->token;
  233.     }
  234.     public function setToken(?string $token): self
  235.     {
  236.         $this->token $token;
  237.         return $this;
  238.     }
  239.     public function setIsVerified(bool $isVerified): self
  240.     {
  241.         $this->isVerified $isVerified;
  242.         return $this;
  243.     }
  244.     public function getPhone(): string
  245.     {
  246.         return $this->phone;
  247.     }
  248.     public function setPhone(string $phone): self
  249.     {
  250.         $this->phone $phone;
  251.         return $this;
  252.     }
  253. }