From 111f4f9bd64f3ed92d6137245cf2f974a91d3fca Mon Sep 17 00:00:00 2001 From: "v.noskov" Date: Wed, 2 Jul 2025 23:58:43 +0300 Subject: [PATCH] Add test data for simple array mapping type from nullable string --- tests/Rules/Doctrine/ORM/data/MyEntity.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/Rules/Doctrine/ORM/data/MyEntity.php b/tests/Rules/Doctrine/ORM/data/MyEntity.php index 0435c4ee..03e5c4a9 100644 --- a/tests/Rules/Doctrine/ORM/data/MyEntity.php +++ b/tests/Rules/Doctrine/ORM/data/MyEntity.php @@ -83,4 +83,10 @@ class MyEntity * @ORM\Column(type="json") */ private $jsonString; + + /** + * @var list + * @ORM\Column(type="simple_array", nullable=true) + */ + private $simpleArrayFromNullableField; }