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