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

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.  * @package core
  6.  * @extends EntityCollection<SalutationEntity>
  7.  */
  8. class SalutationCollection extends EntityCollection
  9. {
  10.     public function getApiAlias(): string
  11.     {
  12.         return 'salutation_collection';
  13.     }
  14.     protected function getExpectedClass(): string
  15.     {
  16.         return SalutationEntity::class;
  17.     }
  18. }