vendor/shopware/core/System/Salutation/SalutationCollection.php line 10

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Core\System\Salutation;
  3. use Shopware\Core\Framework\DataAbstractionLayer\EntityCollection;
  4. /**
  5.  * @extends EntityCollection<SalutationEntity>
  6.  */
  7. class SalutationCollection extends EntityCollection
  8. {
  9.     public function getApiAlias(): string
  10.     {
  11.         return 'salutation_collection';
  12.     }
  13.     protected function getExpectedClass(): string
  14.     {
  15.         return SalutationEntity::class;
  16.     }
  17. }