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