Skip to content

Commit 5199dd6

Browse files
authored
Fix inspect symbol command for internal functions (#680)
1 parent fa6e9ac commit 5199dd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Console/Command/InspectSymbolCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ private static function determineSymbolStatus(
324324

325325
case SymbolType::FUNCTION_TYPE:
326326
return [
327-
$reflector->isClassInternal($symbol),
327+
$reflector->isFunctionInternal($symbol),
328328
$reflector->isExposedFunction($symbol),
329329
];
330330

0 commit comments

Comments
 (0)