<?php
namespace App\Entity;
use App\Repository\TemoignagesRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=TemoignagesRepository::class)
*/
class Temoignages
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $Titre;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $Texte;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $Auteur;
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 getTexte(): ?string
{
return $this->Texte;
}
public function setTexte(?string $Texte): self
{
$this->Texte = $Texte;
return $this;
}
public function getAuteur(): ?string
{
return $this->Auteur;
}
public function setAuteur(?string $Auteur): self
{
$this->Auteur = $Auteur;
return $this;
}
}