From c16219dc6dafa03f84b32662b42d51d4d57c339e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Wed, 28 Aug 2024 11:48:24 +0200 Subject: [PATCH] Force typing for ArrayIterator in EntityWorkflow --- src/Bundle/ChillMainBundle/Entity/Workflow/EntityWorkflow.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Bundle/ChillMainBundle/Entity/Workflow/EntityWorkflow.php b/src/Bundle/ChillMainBundle/Entity/Workflow/EntityWorkflow.php index c2bbf64c3..68b1f1b51 100644 --- a/src/Bundle/ChillMainBundle/Entity/Workflow/EntityWorkflow.php +++ b/src/Bundle/ChillMainBundle/Entity/Workflow/EntityWorkflow.php @@ -286,6 +286,7 @@ class EntityWorkflow implements TrackCreationInterface, TrackUpdateInterface return $this->stepsChainedCache; } + /** @var \ArrayIterator $iterator */ $iterator = $this->steps->getIterator(); $current = null; $steps = [];