From 64d3c61a290a3460f6968f423eb5561124ebbe59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Bar=C3=A1=C5=A1ek?= Date: Mon, 12 Sep 2022 10:09:01 +0200 Subject: [PATCH] EntityManager: Ignore error EntityManager extends from final class. Rel. https://github.com/doctrine/orm/commit/518d7f2ef1a1ffcd7e33c1db7663686db2d78bb4 --- src/EntityManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EntityManager.php b/src/EntityManager.php index 9d8494b..1f71a1f 100644 --- a/src/EntityManager.php +++ b/src/EntityManager.php @@ -20,7 +20,7 @@ /** * Improved implementation of EntityManager with configure cache automatically and add data types. */ -final class EntityManager extends \Doctrine\ORM\EntityManager +final class EntityManager extends \Doctrine\ORM\EntityManager // @phpstan-ignore-line { public function __construct( private string $cacheDir,