From eebc90ac1776b5aa94ed511cd80626ceb6e5599a Mon Sep 17 00:00:00 2001 From: "v.noskov" Date: Wed, 2 Jul 2025 22:34:47 +0300 Subject: [PATCH] Add test data for binary mapping type --- 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..c5d987b4 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 string + * @ORM\Column(type="binary") + */ + private $binaryString; }