From 8c0a5b7059fb0b44de8719f29551ca357356ab96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandru=20P=C4=83tr=C4=83nescu?= Date: Sat, 13 Feb 2021 00:00:58 +0200 Subject: [PATCH] Remove the trailing comma for function call as minimum support version is 7.1 (#5201) --- src/Psalm/Codebase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Psalm/Codebase.php b/src/Psalm/Codebase.php index 2665e5b9fa6..9228525e30f 100644 --- a/src/Psalm/Codebase.php +++ b/src/Psalm/Codebase.php @@ -1734,7 +1734,7 @@ public function getCompletionItemsForArrayKeys( null, null, null, - "'$property_name'", + "'$property_name'" ); } }