Skip to content
This repository was archived by the owner on Dec 5, 2022. It is now read-only.

Commit 04a7e4c

Browse files
committed
[ClassLoader][Routing] Fix namespace parsing on php 8.
1 parent e4636a4 commit 04a7e4c

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

ClassCollectionLoader.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,11 @@ public static function fixNamespaceDeclarations($source)
216216
$inNamespace = false;
217217
$tokens = token_get_all($source);
218218

219+
$nsTokens = [T_WHITESPACE => true, T_NS_SEPARATOR => true, T_STRING => true];
220+
if (\defined('T_NAME_QUALIFIED')) {
221+
$nsTokens[T_NAME_QUALIFIED] = true;
222+
}
223+
219224
for ($i = 0; isset($tokens[$i]); ++$i) {
220225
$token = $tokens[$i];
221226
if (!isset($token[1]) || 'b"' === $token) {
@@ -230,7 +235,7 @@ public static function fixNamespaceDeclarations($source)
230235
$rawChunk .= $token[1];
231236

232237
// namespace name and whitespaces
233-
while (isset($tokens[++$i][1]) && \in_array($tokens[$i][0], [T_WHITESPACE, T_NS_SEPARATOR, T_STRING])) {
238+
while (isset($tokens[++$i][1], $nsTokens[$tokens[$i][0]])) {
234239
$rawChunk .= $tokens[$i][1];
235240
}
236241
if ('{' === $tokens[$i]) {

ClassMapGenerator.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,11 @@ private static function findClasses($path)
9393
$contents = file_get_contents($path);
9494
$tokens = token_get_all($contents);
9595

96+
$nsTokens = [T_STRING => true, T_NS_SEPARATOR => true];
97+
if (\defined('T_NAME_QUALIFIED')) {
98+
$nsTokens[T_NAME_QUALIFIED] = true;
99+
}
100+
96101
$classes = [];
97102

98103
$namespace = '';
@@ -110,7 +115,7 @@ private static function findClasses($path)
110115
$namespace = '';
111116
// If there is a namespace, extract it
112117
while (isset($tokens[++$i][1])) {
113-
if (\in_array($tokens[$i][0], [T_STRING, T_NS_SEPARATOR])) {
118+
if (isset($nsTokens[$tokens[$i][0]])) {
114119
$namespace .= $tokens[$i][1];
115120
}
116121
}

0 commit comments

Comments
 (0)