src/Flexy/FrontBundle/Entity/Newshome.php line 10
<?phpnamespace App\Flexy\FrontBundle\Entity;use App\Flexy\FrontBundle\Repository\NewshomeRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: NewshomeRepository::class)]class Newshome{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 255, nullable: true)]private ?string $title = null;#[ORM\Column(type: Types::TEXT, nullable: true)]private ?string $description = null;#[ORM\Column(length: 255, nullable: true)]private ?string $image = null;#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]private ?\DateTimeInterface $date_debut = null;#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]private ?\DateTimeInterface $date_fin = null;#[ORM\Column(length: 255, nullable: true)]private ?string $under_title = null;#[ORM\Column(length: 255, nullable: true)]private ?string $type = null;public function getId(): ?int{return $this->id;}public function getTitle(): ?string{return $this->title;}public function setTitle(?string $title): static{$this->title = $title;return $this;}public function getDescription(): ?string{return $this->description;}public function setDescription(?string $description): static{$this->description = $description;return $this;}public function getImage(): ?string{return $this->image;}public function setImage(?string $image): static{$this->image = $image;return $this;}public function getDateDebut(): ?\DateTimeInterface{return $this->date_debut;}public function setDateDebut(?\DateTimeInterface $date_debut): static{$this->date_debut = $date_debut;return $this;}public function getDateFin(): ?\DateTimeInterface{return $this->date_fin;}public function setDateFin(?\DateTimeInterface $date_fin): static{$this->date_fin = $date_fin;return $this;}public function getUnderTitle(): ?string{return $this->under_title;}public function setUnderTitle(?string $under_title): static{$this->under_title = $under_title;return $this;}public function getType(): ?string{return $this->type;}public function setType(?string $type): static{$this->type = $type;return $this;}}