<?php declare(strict_types=1);
namespace Shopware\Core\System\Currency;
use Shopware\Core\Framework\DataAbstractionLayer\EntityCollection;
/**
* @extends EntityCollection<CurrencyEntity>
*/
class CurrencyCollection extends EntityCollection
{
public function getApiAlias(): string
{
return 'currency_collection';
}
protected function getExpectedClass(): string
{
return CurrencyEntity::class;
}
}