<?php declare(strict_types=1);namespace Shopware\Core\System\Salutation;use Shopware\Core\Framework\DataAbstractionLayer\EntityCollection;use Shopware\Core\Framework\Log\Package;/** * @extends EntityCollection<SalutationEntity> */#[Package('core')]class SalutationCollection extends EntityCollection{ public function getApiAlias(): string { return 'salutation_collection'; } protected function getExpectedClass(): string { return SalutationEntity::class; }}