Skip to content
Snippets Groups Projects
Gallery.php 1022 B
Newer Older
use App\Repository\GalleryRepository;
#[ORM\Entity(repositoryClass: GalleryRepository::class)]
class Gallery
{
    #[ORM\Id]
    #[ORM\GeneratedValue]
    #[ORM\Column]
    private ?int $id = null;

    #[ORM\ManyToOne(inversedBy: 'galleries')]
    #[ORM\JoinColumn(nullable: false)]
    private ?Restaurant $restaurant = null;

    #[ORM\OneToOne(cascade: ['persist', 'remove'])]
    #[ORM\JoinColumn(nullable: false)]
    private ?File $file = null;

    public function getRestaurant(): ?Restaurant
        return $this->restaurant;
    public function setRestaurant(?Restaurant $restaurant): static
        $this->restaurant = $restaurant;
    public function getFile(): ?File
    public function setFile(File $file): static