'order_transaction.state.reminded',
'order.state.cancelled',
'order.state.completed',
'order.state.in_progress',
// order.state.open is removed, this state is handled by 'checkout.order.placed'
]);
// fetch order state mails
$states =
$this->
fetchMails($connection,
$ids);
// add prefix for state event
$states =
$this->
prefix($states, 'state_enter.'
);
$this->
insertMails($connection,
$states);
} public function updateDestructive(Connection
$connection): void
{ } /**
* @param list<string> $ids
*
* @return array<string, array<string, string>>
*/