From d1ce74bc7997c672742d933255d4c51a4dfa17af Mon Sep 17 00:00:00 2001 From: orklah Date: Mon, 14 Mar 2022 20:07:03 +0100 Subject: [PATCH] fix name --- src/Psalm/Type/Atomic/TCallableString.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Psalm/Type/Atomic/TCallableString.php b/src/Psalm/Type/Atomic/TCallableString.php index e008efa511c..1f52a5da8a5 100644 --- a/src/Psalm/Type/Atomic/TCallableString.php +++ b/src/Psalm/Type/Atomic/TCallableString.php @@ -13,6 +13,11 @@ public function getKey(bool $include_extra = true): string return 'callable-string'; } + public function getId(bool $exact = true, bool $nested = false): string + { + return $this->getKey(); + } + public function canBeFullyExpressedInPhp(int $analysis_php_version_id): bool { return false;