Newer
Older
<?php
namespace App\Entity;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: GalleryRepository::class)]
class Gallery
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'uuid', unique: true)]
private ?Uuid $id = null;
/**
* @var Collection<int, File>
*/
#[ORM\ManyToMany(targetEntity: File::class)]
private Collection $files;
public function __construct()
{
$this->files = new ArrayCollection();
}
{
return $this->id;
}
/**
* @return Collection<int, File>
*/
public function getFile(): Collection
public function addFile(File $file): static
if (!$this->files->contains($file)) {
$this->files->add($file);
}
public function removeFile(File $file): static