From 87ea841aaac9a29c886366b8b5a002402fb2d2a1 Mon Sep 17 00:00:00 2001 From: Julie Lenaerts Date: Thu, 14 Sep 2023 10:04:18 +0200 Subject: [PATCH] fix rector --- .../ChillPersonBundle/Tests/Action/Remove/PersonMoveTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillPersonBundle/Tests/Action/Remove/PersonMoveTest.php b/src/Bundle/ChillPersonBundle/Tests/Action/Remove/PersonMoveTest.php index 19820ae1e..0b2201b37 100644 --- a/src/Bundle/ChillPersonBundle/Tests/Action/Remove/PersonMoveTest.php +++ b/src/Bundle/ChillPersonBundle/Tests/Action/Remove/PersonMoveTest.php @@ -63,7 +63,7 @@ class PersonMoveTest extends KernelTestCase self::bootKernel(); $em = self::$container->get(EntityManagerInterface::class); - foreach (self::$entitiesToDelete as list($class, $id)) { + foreach (self::$entitiesToDelete as [$class, $id]) { $entity = $em->find($class, $id); if (null !== $entity) {