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