vendor/shopware/core/Content/Product/SalesChannel/SalesChannelProductCollection.php line 7

  1. <?php declare(strict_types=1);
  2. namespace Shopware\Core\Content\Product\SalesChannel;
  3. use Shopware\Core\Content\Product\ProductCollection;
  4. use Shopware\Core\Framework\Log\Package;
  5. #[Package('inventory')]
  6. class SalesChannelProductCollection extends ProductCollection
  7. {
  8.     protected function getExpectedClass(): string
  9.     {
  10.         return SalesChannelProductEntity::class;
  11.     }
  12. }