src/Entity/NewUser.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\NewUserRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassNewUserRepository::class)]
  6. class NewUser
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255)]
  13.     private ?string $firstName null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $lastName null;
  16.     #[ORM\Column(length255)]
  17.     private ?string $email null;
  18.     #[ORM\Column(length255)]
  19.     private ?string $password null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $phoneNumber null;
  22.     #[ORM\Column(length255,nullabletrue)]
  23.     private ?string $user_address null;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $UserType null;
  26.     public function getId(): ?int
  27.     {
  28.         return $this->id;
  29.     }
  30.     public function getFirstName(): ?string
  31.     {
  32.         return $this->firstName;
  33.     }
  34.     public function setFirstName(string $firstName): self
  35.     {
  36.         $this->firstName $firstName;
  37.         return $this;
  38.     }
  39.     public function getLastName(): ?string
  40.     {
  41.         return $this->lastName;
  42.     }
  43.     public function setLastName(string $lastName): self
  44.     {
  45.         $this->lastName $lastName;
  46.         return $this;
  47.     }
  48.     public function getEmail(): ?string
  49.     {
  50.         return $this->email;
  51.     }
  52.     public function setEmail(string $email): self
  53.     {
  54.         $this->email $email;
  55.         return $this;
  56.     }
  57.     public function getPassword(): ?string
  58.     {
  59.         return $this->password;
  60.     }
  61.     public function setPassword(string $password): self
  62.     {
  63.         $this->password $password;
  64.         return $this;
  65.     }
  66.     public function getPhoneNumber(): ?string
  67.     {
  68.         return $this->phoneNumber;
  69.     }
  70.     public function setPhoneNumber(?string $phoneNumber): self
  71.     {
  72.         $this->phoneNumber $phoneNumber;
  73.         return $this;
  74.     }
  75.     public function getUserAddress(): ?string
  76.     {
  77.         return $this->user_address;
  78.     }
  79.     public function setUserAddress(?string $user_address): self
  80.     {
  81.         $this->user_address $user_address;
  82.         return $this;
  83.     }
  84.     public function getUserType(): ?string
  85.     {
  86.         return $this->UserType;
  87.     }
  88.     public function setUserType(?string $UserType): self
  89.     {
  90.         $this->UserType $UserType;
  91.         return $this;
  92.     }
  93. }