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