vendor/shopware/core/System/SalesChannel/Aggregate/SalesChannelDomain/SalesChannelDomainCollection.php line 12

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