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

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.  * @package core
  6.  * @extends EntityCollection<CurrencyEntity>
  7.  */
  8. class CurrencyCollection extends EntityCollection
  9. {
  10.     public function getApiAlias(): string
  11.     {
  12.         return 'currency_collection';
  13.     }
  14.     protected function getExpectedClass(): string
  15.     {
  16.         return CurrencyEntity::class;
  17.     }
  18. }