Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.coaching-en-developpement-personnel.fr
/
htdocs
/
src
/
Entity
/
/srv/data/web/vhosts/www.coaching-en-developpement-personnel.fr/htdocs/src/Entity/QuoteHomePage.php
<?php namespace App\Entity; use App\Repository\QuoteHomePageRepository; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity(repositoryClass=QuoteHomePageRepository::class) */ class QuoteHomePage { /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="string", length=255) */ private $quote; public function getId(): ?int { return $this->id; } public function getQuote(): ?string { return $this->quote; } public function setQuote(string $quote): self { $this->quote = $quote; return $this; } public function __toString() { return $this->getQuote(); } }