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; }