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

Fix strtolower ref

This commit is contained in:
Brown 2019-11-04 15:14:07 -05:00
parent 1f42843d42
commit d8ae33957d

View File

@ -10,7 +10,7 @@ class ClosureAnalyzer extends FunctionLikeAnalyzer
{
$codebase = $source->getCodebase();
$function_id = strtolower($source->getFilePath())
$function_id = \strtolower($source->getFilePath())
. ':' . $function->getLine()
. ':' . (int)$function->getAttribute('startFilePos')
. ':-:closure';