Cast steps array key to string

[MAILPOET-5267]
This commit is contained in:
David Remer
2023-04-26 07:38:42 +03:00
committed by Jan Jakeš
parent d6545a01f6
commit 6a6d158785

View File

@@ -12,7 +12,7 @@ class ConsistentStepMapRule implements AutomationNodeVisitor {
public function initialize(Automation $automation): void {
foreach ($automation->getSteps() as $id => $step) {
if ($id !== $step->getId()) {
if ((string)$id !== $step->getId()) {
// translators: %1$s is the ID of the step, %2$s is its index in the steps object.
throw Exceptions::automationStructureNotValid(
sprintf(__("Step with ID '%1\$s' stored under a mismatched index '%2\$s'.", 'mailpoet'), $step->getId(), $id),