1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00

removing trailing comma in function call, not detectable by php-cs-fixer re: FriendsOfPHP/PHP-CS-Fixer#4135 (#2597)

This commit is contained in:
SignpostMarv 2020-01-11 21:00:38 +00:00 committed by Matthew Brown
parent 39f0def7bf
commit 9b2ceba2db

View File

@ -84,7 +84,7 @@ class ArrayFilterReturnTypeProvider implements \Psalm\Plugin\Hook\FunctionReturn
) {
return new Type\Union([
new Type\Atomic\TList(
$inner_type,
$inner_type
),
]);
}