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

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