src/Entity/PresentationTexte.php line 11
<?php
namespace App\Entity;
use App\Repository\PresentationTexteRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: PresentationTexteRepository::class)]
class PresentationTexte
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'text')]
private $content;
public function getId(): ?int
{
return $this->id;
}
public function getContent(): ?string
{
return $this->content;
}
public function setContent(string $content): self
{
$this->content = $content;
return $this;
}
}