vendor/shopware/core/Content/Media/Aggregate/MediaThumbnail/MediaThumbnailCollection.php line 12

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