Skip to content

Commit 6bcc014

Browse files
committed
Fix a CS issue
1 parent 3d4801e commit 6bcc014

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Symfony/Compiler/Discovery/ClassFinder.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ private function isNamespaceToken($tokens, int $index): bool
7272
if (PHP_VERSION_ID < 80000) {
7373
return $this->extractTokens($tokens, $index - 2, 3) === [T_NAMESPACE, T_WHITESPACE, T_STRING];
7474
}
75+
7576
return $this->extractTokens($tokens, $index - 2, 3) === [T_NAMESPACE, T_WHITESPACE, T_NAME_QUALIFIED];
7677
}
7778

0 commit comments

Comments
 (0)