Newer
Older
<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: GalleryRepository::class)]
class Gallery
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\JoinColumn(nullable: false)]
private ?Restaurant $restaurant = null;
#[ORM\OneToOne(cascade: ['persist', 'remove'])]
#[ORM\JoinColumn(nullable: false)]
private ?File $file = null;
public function getId(): ?int
{
return $this->id;
}
public function getRestaurant(): ?Restaurant
public function setRestaurant(?Restaurant $restaurant): static
public function setFile(File $file): static