src/Entity/AppHoroscope/Mensuel.php line 13
<?phpnamespace App\Entity\AppHoroscope;use Doctrine\ORM\Mapping as ORM;/*** Mensuel** @ORM\Table(name="mensuel")* @ORM\Entity(repositoryClass="App\Repository\AppHoroscope\MensuelRepository")*/class Mensuel{/*** @var int** @ORM\Column(name="id", type="integer", nullable=false)* @ORM\Id* @ORM\GeneratedValue(strategy="IDENTITY")*/private $id;/*** @var string** @ORM\Column(name="vie_prive", type="text", length=65535, nullable=false)*/private $viePrive;/*** @var string** @ORM\Column(name="travail", type="text", length=65535, nullable=false)*/private $travail;/*** @var string** @ORM\Column(name="forme", type="text", length=65535, nullable=false)*/private $forme;public function getId(): ?int{return $this->id;}public function getViePrive(): ?string{return $this->viePrive;}public function setViePrive(string $viePrive): self{$this->viePrive = $viePrive;return $this;}public function getTravail(): ?string{return $this->travail;}public function setTravail(string $travail): self{$this->travail = $travail;return $this;}public function getForme(): ?string{return $this->forme;}public function setForme(string $forme): self{$this->forme = $forme;return $this;}}