vendor/shopware/core/System/Currency/CurrencyCollection.php line 10

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Core\System\Currency;
  3. use Shopware\Core\Framework\DataAbstractionLayer\EntityCollection;
  4. /**
  5.  * @extends EntityCollection<CurrencyEntity>
  6.  */
  7. class CurrencyCollection extends EntityCollection
  8. {
  9.     public function getApiAlias(): string
  10.     {
  11.         return 'currency_collection';
  12.     }
  13.     protected function getExpectedClass(): string
  14.     {
  15.         return CurrencyEntity::class;
  16.     }
  17. }