1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-03 10:07:52 +01:00

fix spacing

This commit is contained in:
Andrew Nagy 2022-02-14 22:19:19 +00:00
parent 6394e2d548
commit 29f0159b21

View File

@ -245,7 +245,7 @@ abstract class FunctionLikeStorage
array_map(
function (FunctionLikeParameter $param): string {
$realType = $param->type ?: 'mixed';
return " {$realType} \${$param->name}";
return " {$realType} \${$param->name}";
},
$this->params
)