From 4d4854de26a3174f975f989c6581a6a312d8115f Mon Sep 17 00:00:00 2001 From: qwerin Date: Mon, 25 Jul 2022 08:16:39 +0200 Subject: [PATCH] add deprecated alias getNameFqn use on ORM https://github.com/nextras/orm/blob/main/src/Mapper/Dbal/Conventions/Conventions.php#L145 --- src/Platforms/Data/Table.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Platforms/Data/Table.php b/src/Platforms/Data/Table.php index 17427c8..a9247b2 100644 --- a/src/Platforms/Data/Table.php +++ b/src/Platforms/Data/Table.php @@ -19,6 +19,14 @@ class Table /** @var bool */ public $isView; + + /** + * @deprecated Use getUnescapedFqn() + */ + public function getNameFqn(): string + { + return $this->getUnescapedFqn(); + } /**