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