<?php
namespace App\Entity;
use App\Repository\AproposRepository;
use Doctrine\ORM\Mapping as ORM;
use Doctrine\DBAL\Types\Types;
#[ORM\Entity(repositoryClass: AproposRepository::class)]
class Apropos
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $Titre = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $description1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $birthday = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $website = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $phone = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $city = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $age = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $Degree = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $email = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $Freelance = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $description2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $photo = null;
public function getId(): ?int
{
return $this->id;
}
public function getTitre(): ?string
{
return $this->Titre;
}
public function setTitre(?string $Titre): self
{
$this->Titre = $Titre;
return $this;
}
public function getDescription1(): ?string
{
return $this->description1;
}
public function setDescription1(?string $description1): self
{
$this->description1 = $description1;
return $this;
}
public function getBirthday(): ?string
{
return $this->birthday;
}
public function setBirthday(?string $birthday): self
{
$this->birthday = $birthday;
return $this;
}
public function getWebsite(): ?string
{
return $this->website;
}
public function setWebsite(?string $website): self
{
$this->website = $website;
return $this;
}
public function getPhone(): ?string
{
return $this->phone;
}
public function setPhone(?string $phone): self
{
$this->phone = $phone;
return $this;
}
public function getCity(): ?string
{
return $this->city;
}
public function setCity(?string $city): self
{
$this->city = $city;
return $this;
}
public function getAge(): ?string
{
return $this->age;
}
public function setAge(?string $age): self
{
$this->age = $age;
return $this;
}
public function getDegree(): ?string
{
return $this->Degree;
}
public function setDegree(?string $Degree): self
{
$this->Degree = $Degree;
return $this;
}
public function getEmail(): ?string
{
return $this->email;
}
public function setEmail(?string $email): self
{
$this->email = $email;
return $this;
}
public function getFreelance(): ?string
{
return $this->Freelance;
}
public function setFreelance(?string $Freelance): self
{
$this->Freelance = $Freelance;
return $this;
}
public function getDescription2(): ?string
{
return $this->description2;
}
public function setDescription2(?string $description2): self
{
$this->description2 = $description2;
return $this;
}
public function getPhoto(): ?string
{
return $this->photo;
}
public function setPhoto(?string $photo): self
{
$this->photo = $photo;
return $this;
}
}