Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cf366be

Browse files
committedSep 18, 2024··
use Numeric Literal Separator
1 parent fd665fd commit cf366be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎tests/Internal/Codebase/InternalCallMapHandlerTest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -520,10 +520,11 @@ private function getReflectionFunction(string $functionName): ?ReflectionFunctio
520520
{
521521
try {
522522
if (strpos($functionName, '::') !== false) {
523-
if (PHP_VERSION_ID < 803000) {
523+
if (PHP_VERSION_ID < 8_03_00) {
524524
[$className, , $methodName] = explode(':', $functionName, 3);
525525
return new ReflectionMethod($className, $methodName);
526526
}
527+
527528
return ReflectionMethod::createFromMethodName($functionName);
528529
}
529530

0 commit comments

Comments
 (0)
Please sign in to comment.