<?php declare(strict_types=1);
namespace NetzpGallery6\Core\Content\Gallery;
use Shopware\Core\Framework\DataAbstractionLayer\EntityCollection;
/**
* @method void add(GalleryEntity $entity)
* @method void set(string $key, GalleryEntity $entity)
* @method GalleryEntity[] getIterator()
* @method GalleryEntity[] getElements()
* @method GalleryEntity|null get(string $key)
* @method GalleryEntity|null first()
* @method GalleryEntity|null last()
*/
class GalleryCollection extends EntityCollection
{
protected function getExpectedClass(): string
{
return GalleryEntity::class;
}
}