Skip to content
Snippets Groups Projects
Gallery.php 1.14 KiB
Newer Older
use App\Repository\GalleryRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Symfony\Component\Uid\Uuid;
#[ORM\Entity(repositoryClass: GalleryRepository::class)]
class Gallery
    #[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();
    }
    public function getId(): ?Uuid
    /**
     * @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
        $this->files->removeElement($file);