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

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