src/Entity/UserDetail.php line 10
<?phpnamespace App\Entity;use App\Repository\UserDetailRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: UserDetailRepository::class)]class UserDetail{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\OneToOne(inversedBy: 'userDetail', cascade: ['persist', 'remove'])]private ?User $user = null;#[ORM\Column(type: Types::TEXT, nullable: true)]private ?string $about = null;#[ORM\Column(length: 255, nullable: true)]private ?string $facebook = null;#[ORM\Column(length: 255, nullable: true)]private ?string $linkedin = null;#[ORM\Column(length: 255, nullable: true)]private ?string $twitter = null;#[ORM\Column(length: 255, nullable: true)]private ?string $instagram = null;#[ORM\Column]private ?int $updatedBy = null;#[ORM\Column]private ?string $identificationNumber = null;#[ORM\Column]private ?string $identificationType = null;#[ORM\Column(length: 255, nullable: true)]private ?string $street = null;#[ORM\Column(length: 255, nullable: true)]private ?string $state = null;#[ORM\Column(length: 255, nullable: true)]private ?string $postCode = null;#[ORM\Column(length: 255, nullable: true)]private ?string $houseNumber = null;#[ORM\Column(nullable: true)]private ?int $newsletter = null;#[ORM\Column(nullable: true)]private ?int $displayInWeb = null;public function getUser(): ?User{return $this->user;}public function setUser(?User $user): static{$this->user = $user;return $this;}public function getAbout(): ?string{return $this->about;}public function setAbout(?string $about): static{$this->about = $about;return $this;}public function getFacebook(): ?string{return $this->facebook;}public function setFacebook(?string $facebook): static{$this->facebook = $facebook;return $this;}public function getLinkedin(): ?string{return $this->linkedin;}public function setLinkedin(?string $linkedin): static{$this->linkedin = $linkedin;return $this;}public function getTwitter(): ?string{return $this->twitter;}public function setTwitter(?string $twitter): static{$this->twitter = $twitter;return $this;}public function getInstagram(): ?string{return $this->instagram;}public function setInstagram(?string $instagram): static{$this->instagram = $instagram;return $this;}public function getUpdatedBy(): ?int{return $this->updatedBy;}public function setUpdatedBy(int $updatedBy): static{$this->updatedBy = $updatedBy;return $this;}public function getIdentificationNumber(): ?string{return $this->identificationNumber;}public function setIdentificationNumber(?string $identificationNumber): static{$this->identificationNumber = $identificationNumber;return $this;}public function getStreet(): ?string{return $this->street;}public function setStreet(?string $street): static{$this->street = $street;return $this;}public function getState(): ?string{return $this->state;}public function setState(?string $state): static{$this->state = $state;return $this;}public function getPostCode(): ?string{return $this->postCode;}public function setPostCode(?string $postCode): static{$this->postCode = $postCode;return $this;}public function getNewsletter(): ?int{return $this->newsletter;}public function setNewsletter(?int $newsletter): static{$this->newsletter = $newsletter;return $this;}public function getDisplayInWeb(): ?int{return $this->displayInWeb;}/*** @return string|null*/public function getIdentificationType(): ?string{return $this->identificationType;}/*** @param string|null $identificationType*/public function setIdentificationType(?string $identificationType): void{$this->identificationType = $identificationType;}public function setDisplayInWeb(?int $displayInWeb): static{$this->displayInWeb = $displayInWeb;return $this;}public function getHouseNumber(): ?string{return $this->houseNumber;}public function setHouseNumber(?string $houseNumber): void{$this->houseNumber = $houseNumber;}}