Skip to content

Commit

Permalink
Merge pull request #182 from qwerin/patch-1
Browse files Browse the repository at this point in the history
add deprecated alias getNameFqn
  • Loading branch information
hrach committed Jul 25, 2022
2 parents 572fe29 + 4d4854d commit 37eb23b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Platforms/Data/Table.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ class Table

/** @var bool */
public $isView;

/**
* @deprecated Use getUnescapedFqn()
*/
public function getNameFqn(): string
{
return $this->getUnescapedFqn();
}


/**
Expand Down

0 comments on commit 37eb23b

Please sign in to comment.