Skip to content
This repository has been archived by the owner on Dec 1, 2024. It is now read-only.

Commit

Permalink
Add missing & to bin/hhast-inspect
Browse files Browse the repository at this point in the history
  • Loading branch information
fredemmott committed Jun 28, 2018
1 parent f1d1430 commit 8cd5888
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/hhast-inspect
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ while (true) {
break;
}
$parts = explode('/', $root);
array_pop($parts);
array_pop(&$parts);
$root = implode('/', $parts);
}

Expand All @@ -33,4 +33,4 @@ if (!$found_autoloader) {
exit(1);
}

InspectorCLI::main();
InspectorCLI::main();

0 comments on commit 8cd5888

Please sign in to comment.