vendor/shopware/core/Content/Seo/Hreflang/HreflangCollection.php line 12

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Core\Content\Seo\Hreflang;
  3. use Shopware\Core\Framework\Log\Package;
  4. use Shopware\Core\Framework\Struct\StructCollection;
  5. /**
  6.  * @extends StructCollection<HreflangStruct>
  7.  */
  8. #[Package('sales-channel')]
  9. class HreflangCollection extends StructCollection
  10. {
  11.     public function getApiAlias(): string
  12.     {
  13.         return 'seo_hreflang_collection';
  14.     }
  15.     protected function getExpectedClass(): string
  16.     {
  17.         return HreflangStruct::class;
  18.     }
  19. }