custom/plugins/TrustedShops/src/Product/Aggregate/ProductTrustedShopsRating/ProductTrustedShopsRatingCollection.php line 7

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace TrustedShops\Product\Aggregate\ProductTrustedShopsRating;
  3. use Shopware\Core\Framework\DataAbstractionLayer\EntityCollection;
  4. class ProductTrustedShopsRatingCollection extends EntityCollection
  5. {
  6.     protected function getExpectedClass(): string
  7.     {
  8.         return ProductTrustedShopsRatingEntity::class;
  9.     }
  10. }