Skip to content

Commit c6432c8

Browse files
committed
Make fabbot hayppy
1 parent 9375c89 commit c6432c8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Symfony/Component/Routing/Loader/AnnotationFileLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ protected function findClass($file)
9797

9898
$nsTokens = [\T_NS_SEPARATOR => true, \T_STRING => true];
9999
if (\defined('T_NAME_QUALIFIED')) {
100-
$nsTokens[T_NAME_QUALIFIED] = true;
100+
$nsTokens[\T_NAME_QUALIFIED] = true;
101101
}
102102
for ($i = 0; isset($tokens[$i]); ++$i) {
103103
$token = $tokens[$i];

src/Symfony/Component/Routing/Tests/Loader/AnnotationFileLoaderTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ public function testLoadAttributesInlineQuotedClassAfterComma()
119119

120120
$this->loader->load(__DIR__.'/../Fixtures/AttributesFixtures/AttributesClassParamInlineQuotedAfterCommaController.php');
121121
}
122+
122123
/**
123124
* @requires PHP 8
124125
*/

0 commit comments

Comments
 (0)