vendor/shopware/core/Content/Seo/MainCategory/MainCategoryCollection.php line 12

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Core\Content\Seo\MainCategory;
  3. use Shopware\Core\Framework\DataAbstractionLayer\EntityCollection;
  4. use Shopware\Core\Framework\Log\Package;
  5. /**
  6.  * @extends EntityCollection<MainCategoryEntity>
  7.  */
  8. #[Package('sales-channel')]
  9. class MainCategoryCollection extends EntityCollection
  10. {
  11.     public function filterBySalesChannelId(string $id): MainCategoryCollection
  12.     {
  13.         return $this->filter(static function (MainCategoryEntity $mainCategory) use ($id) {
  14.             return $mainCategory->getSalesChannelId() === $id;
  15.         });
  16.     }
  17.     public function getApiAlias(): string
  18.     {
  19.         return 'seo_main_category_collection';
  20.     }
  21.     protected function getExpectedClass(): string
  22.     {
  23.         return MainCategoryEntity::class;
  24.     }
  25. }