Skip to content

Commit

Permalink
add slashes
Browse files Browse the repository at this point in the history
  • Loading branch information
muglug committed Aug 20, 2019
1 parent 9696fb8 commit 4fff6c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Psalm/Internal/Codebase/Taint.php
Expand Up @@ -136,7 +136,7 @@ public function addSources(
$root_source = $source; $root_source = $source;


while ($root_source->parents) { while ($root_source->parents) {
$first_parent = reset($root_source->parents); $first_parent = \reset($root_source->parents);
if (!$first_parent->code_location) { if (!$first_parent->code_location) {
break; break;
} }
Expand Down Expand Up @@ -176,7 +176,7 @@ public function addSinks(
$root_source = $existing_source; $root_source = $existing_source;


while ($root_source->parents) { while ($root_source->parents) {
$first_parent = reset($root_source->parents); $first_parent = \reset($root_source->parents);
if (!$first_parent->code_location) { if (!$first_parent->code_location) {
break; break;
} }
Expand Down

0 comments on commit 4fff6c2

Please sign in to comment.