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