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

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Core\Content\Product\SalesChannel;
  3. use Shopware\Core\Content\Product\ProductCollection;
  4. class SalesChannelProductCollection extends ProductCollection
  5. {
  6.     public function getExpectedClass(): string
  7.     {
  8.         return SalesChannelProductEntity::class;
  9.     }
  10. }