1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 05:41:20 +01:00

add slashes

This commit is contained in:
Matthew Brown 2019-08-20 19:02:23 -04:00 committed by GitHub
parent 9696fb8dce
commit 4fff6c28a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -136,7 +136,7 @@ class Taint
$root_source = $source;
while ($root_source->parents) {
$first_parent = reset($root_source->parents);
$first_parent = \reset($root_source->parents);
if (!$first_parent->code_location) {
break;
}
@ -176,7 +176,7 @@ class Taint
$root_source = $existing_source;
while ($root_source->parents) {
$first_parent = reset($root_source->parents);
$first_parent = \reset($root_source->parents);
if (!$first_parent->code_location) {
break;
}