From 111875a77b82157934d0daf8ec3482154f501f3f Mon Sep 17 00:00:00 2001 From: ramity Date: Mon, 8 Jan 2024 07:26:56 +0000 Subject: [PATCH] dropped type to see if that's what's causing the parsing error during testing --- src/Doctrine/EntityRelation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Doctrine/EntityRelation.php b/src/Doctrine/EntityRelation.php index 91db3effce..abb35aa369 100644 --- a/src/Doctrine/EntityRelation.php +++ b/src/Doctrine/EntityRelation.php @@ -27,7 +27,7 @@ final class EntityRelation private bool $isSelfReferencing = false; private bool $orphanRemoval = false; private bool $mapInverseRelation = true; - private ?string $joinTableName = null; + private $joinTableName; public function __construct( private string $type,