1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-21 21:31:13 +01:00

Fix indentation

This commit is contained in:
Matthew Brown 2018-04-09 21:50:38 -04:00
parent 7640b00635
commit 5f47374606

View File

@ -272,16 +272,16 @@ class FunctionCallChecker extends \Psalm\Checker\Statements\Expression\CallCheck
// do this here to allow closure param checks
if ($function_params !== null
&& self::checkFunctionLikeArgumentsMatch(
$statements_checker,
$stmt->args,
$function_id,
$function_params,
$function_storage,
null,
$generic_params,
$code_location,
$context
) === false) {
$statements_checker,
$stmt->args,
$function_id,
$function_params,
$function_storage,
null,
$generic_params,
$code_location,
$context
) === false) {
// fall through
}