We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cbf1101 + 67a26c9 commit a9622a5Copy full SHA for a9622a5
1 file changed
src/Utils/PhpFunctionsScanner.php
@@ -90,6 +90,11 @@ public function getFunctions(array $constants = [])
90
continue;
91
}
92
93
+ if (defined('T_NAME_FULLY_QUALIFIED') && T_NAME_FULLY_QUALIFIED === $value[0]) {
94
+ $value[0] = T_STRING;
95
+ $value[1] = ltrim($value[1], '\\');
96
+ }
97
+
98
switch ($value[0]) {
99
case T_CONSTANT_ENCAPSED_STRING:
100
//add an argument to the current function
0 commit comments