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