1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-11 16:59:45 +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( array_map(
function (FunctionLikeParameter $param): string { function (FunctionLikeParameter $param): string {
$realType = $param->type ?: 'mixed'; $realType = $param->type ?: 'mixed';
return " {$realType} \${$param->name}"; return " {$realType} \${$param->name}";
}, },
$this->params $this->params
) )