for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Shopware\Core\Checkout\Customer\DataAbstractionLayer;
use Shopware\Core\Framework\DataAbstractionLayer\Indexing\EntityIndexingMessage;
use Shopware\Core\Framework\Feature;
class CustomerIndexingMessage extends EntityIndexingMessage
{
/**
* @var string[]
*/
private array $ids = [];
* @param string[] $ids
*
* @deprecated tag:v6.5.0 - will be removed use setIds instead
public function setIdsWithEmailChange(array $ids): void
Feature::triggerDeprecationOrThrow(
'v6.5.0.0',
Feature::deprecatedMethodMessage(__CLASS__, __METHOD__, 'v6.5.0.0')
);
$this->ids = $ids;
}
* @deprecated tag:v6.5.0 - will be removed use getIds instead
* @return string[]
public function getIdsWithEmailChange(): array
return $this->ids;
public function getIds(): array
* @param array<string> $ids
public function setIds(array $ids): void