src/Entity/User.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\UserRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Component\Security\Core\User\UserInterface;
  6. /**
  7.  * @ORM\Entity(repositoryClass=UserRepository::class)
  8.  */
  9. class User implements UserInterface
  10. {
  11.     /**
  12.      * @ORM\Id
  13.      * @ORM\GeneratedValue
  14.      * @ORM\Column(type="integer")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @ORM\Column(type="string", length=180, unique=true)
  19.      */
  20.     private $username;
  21.     /**
  22.      * @ORM\Column(type="json")
  23.      */
  24.     private $roles = [];
  25.     /**
  26.      * @var string The hashed password
  27.      * @ORM\Column(type="string")
  28.      */
  29.     private $password;
  30.     /**
  31.      * @ORM\Column(type="string", length=255)
  32.      */
  33.     private $firstname;
  34.     /**
  35.      * @ORM\Column(type="string", length=255)
  36.      */
  37.     private $lastname;
  38.     /**
  39.      * @ORM\Column(type="string", length=255)
  40.      */
  41.     private $phone;
  42.     /**
  43.      * @ORM\Column(type="string", length=255)
  44.      */
  45.     private $email;
  46.     /**
  47.      * @ORM\Column(type="datetime")
  48.      */
  49.     private $created;
  50.     /**
  51.      * @ORM\Column(type="datetime")
  52.      */
  53.     private $updated;
  54.     /**
  55.      * @ORM\Column(type="datetime")
  56.      */
  57.     private $accessed;
  58.     /**
  59.      * @ORM\Column(type="boolean")
  60.      */
  61.     private $status;
  62.     public function getId(): ?int
  63.     {
  64.         return $this->id;
  65.     }
  66.     /**
  67.      * A visual identifier that represents this user.
  68.      *
  69.      * @see UserInterface
  70.      */
  71.     public function getUsername(): string
  72.     {
  73.         return (string) $this->username;
  74.     }
  75.     public function setUsername(string $username): self
  76.     {
  77.         $this->username $username;
  78.         return $this;
  79.     }
  80.     /**
  81.      * @see UserInterface
  82.      */
  83.     public function getRoles(): array
  84.     {
  85.         $roles $this->roles;
  86.         // guarantee every user at least has ROLE_USER
  87.         $roles[] = 'ROLE_USER';
  88.         return array_unique($roles);
  89.     }
  90.     public function setRoles(array $roles): self
  91.     {
  92.         $this->roles $roles;
  93.         return $this;
  94.     }
  95.     /**
  96.      * @see UserInterface
  97.      */
  98.     public function getPassword(): string
  99.     {
  100.         return (string) $this->password;
  101.     }
  102.     public function setPassword(string $password): self
  103.     {
  104.         $this->password $password;
  105.         return $this;
  106.     }
  107.     /**
  108.      * @see UserInterface
  109.      */
  110.     public function getSalt()
  111.     {
  112.         // not needed when using the "bcrypt" algorithm in security.yaml
  113.     }
  114.     /**
  115.      * @see UserInterface
  116.      */
  117.     public function eraseCredentials()
  118.     {
  119.         // If you store any temporary, sensitive data on the user, clear it here
  120.         // $this->plainPassword = null;
  121.     }
  122.     public function getFirstname(): ?string
  123.     {
  124.         return $this->firstname;
  125.     }
  126.     public function setFirstname(string $firstname): self
  127.     {
  128.         $this->firstname $firstname;
  129.         return $this;
  130.     }
  131.     public function getLastname(): ?string
  132.     {
  133.         return $this->lastname;
  134.     }
  135.     public function setLastname(string $lastname): self
  136.     {
  137.         $this->lastname $lastname;
  138.         return $this;
  139.     }
  140.     public function getPhone(): ?string
  141.     {
  142.         return $this->phone;
  143.     }
  144.     public function setPhone(string $phone): self
  145.     {
  146.         $this->phone $phone;
  147.         return $this;
  148.     }
  149.     public function getEmail(): ?string
  150.     {
  151.         return $this->email;
  152.     }
  153.     public function setEmail(string $email): self
  154.     {
  155.         $this->email $email;
  156.         return $this;
  157.     }
  158.     public function getCreated(): ?\DateTimeInterface
  159.     {
  160.         return $this->created;
  161.     }
  162.     public function setCreated(\DateTimeInterface $created): self
  163.     {
  164.         $this->created $created;
  165.         return $this;
  166.     }
  167.     public function getUpdated(): ?\DateTimeInterface
  168.     {
  169.         return $this->updated;
  170.     }
  171.     public function setUpdated(\DateTimeInterface $updated): self
  172.     {
  173.         $this->updated $updated;
  174.         return $this;
  175.     }
  176.     public function getAccessed(): ?\DateTimeInterface
  177.     {
  178.         return $this->accessed;
  179.     }
  180.     public function setAccessed(\DateTimeInterface $accessed): self
  181.     {
  182.         $this->accessed $accessed;
  183.         return $this;
  184.     }
  185.     public function getStatus(): ?bool
  186.     {
  187.         return $this->status;
  188.     }
  189.     public function setStatus(bool $status): self
  190.     {
  191.         $this->status $status;
  192.         return $this;
  193.     }
  194. }