src/Entity/User.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\UserRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  7. use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
  8. use Symfony\Component\Security\Core\User\UserInterface;
  9. #[ORM\Entity(repositoryClassUserRepository::class)]
  10. #[UniqueEntity(fields: ['email'], message'There is already an account with this email')]
  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 $email null;
  19.     #[ORM\Column]
  20.     private array $roles = [];
  21.     #[ORM\ManyToOne(targetEntity'App\Entity\Person')]
  22.     #[ORM\JoinColumn(name'fk_person'referencedColumnName'id'nullabletrue)]
  23.     private ?Person $person;
  24.     #[ORM\OneToOne(inversedBy'user'targetEntityCustomer::class, cascade: ['persist''remove'], fetch"EAGER")]
  25.     private ?Customer $customer null;
  26.     /**
  27.      * @var string The hashed password
  28.      */
  29.     #[ORM\Column]
  30.     private ?string $password null;
  31.     #[ORM\Column(type'boolean')]
  32.     private $isVerified false;
  33.     #[ORM\Column(type'date_immutable'nullabletrue)]
  34.     private $lastLogin;
  35.     public function getId(): ?int
  36.     {
  37.         return $this->id;
  38.     }
  39.     public function getEmail(): ?string
  40.     {
  41.         return $this->email;
  42.     }
  43.     public function setEmail(string $email): self
  44.     {
  45.         $this->email $email;
  46.         return $this;
  47.     }
  48.     /**
  49.      * A visual identifier that represents this user.
  50.      *
  51.      * @see UserInterface
  52.      */
  53.     public function getUserIdentifier(): string
  54.     {
  55.         return (string) $this->email;
  56.     }
  57.     /**
  58.      * @see UserInterface
  59.      */
  60.     public function getRoles(): array
  61.     {
  62.         $roles $this->roles;
  63.         // guarantee every user at least has ROLE_USER
  64.         $roles[] = 'ROLE_USER';
  65.         return array_unique($roles);
  66.     }
  67.     public function setRoles(array $roles): self
  68.     {
  69.         $this->roles $roles;
  70.         return $this;
  71.     }
  72.     /**
  73.      * @see PasswordAuthenticatedUserInterface
  74.      */
  75.     public function getPassword(): string
  76.     {
  77.         return $this->password;
  78.     }
  79.     public function setPassword(string $password): self
  80.     {
  81.         $this->password $password;
  82.         return $this;
  83.     }
  84.     /**
  85.      * @see UserInterface
  86.      */
  87.     public function eraseCredentials()
  88.     {
  89.         // If you store any temporary, sensitive data on the user, clear it here
  90.         // $this->plainPassword = null;
  91.     }
  92.     public function isVerified(): bool
  93.     {
  94.         return $this->isVerified;
  95.     }
  96.     public function setIsVerified(bool $isVerified): self
  97.     {
  98.         $this->isVerified $isVerified;
  99.         return $this;
  100.     }
  101.     public function isIsVerified(): ?bool
  102.     {
  103.         return $this->isVerified;
  104.     }
  105.     public function getPerson(): ?Person
  106.     {
  107.         return $this->person;
  108.     }
  109.     public function setPerson(?Person $person): self
  110.     {
  111.         $this->person $person;
  112.         return $this;
  113.     }
  114.     public function getLastLogin(): ?\DateTimeImmutable
  115.     {
  116.         return $this->lastLogin;
  117.     }
  118.     public function setLastLogin(?\DateTimeImmutable $lastLogin): self
  119.     {
  120.         $this->lastLogin $lastLogin;
  121.         return $this;
  122.     }
  123.     public function getCustomer(): ?Customer
  124.     {
  125.         return $this->customer;
  126.     }
  127.     public function setCustomer(?Customer $customer): self
  128.     {
  129.         $this->customer $customer;
  130.         return $this;
  131.     }
  132. }