We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19d566f commit 379692dCopy full SHA for 379692d
tests/Core/Tokenizers/PHP/NullableVsInlineThenTest.inc
@@ -66,10 +66,10 @@ $ternary = true ? Partially\callMe() : null;
66
$ternary = true ? Partially\ClassName::callMe() : null;
67
68
/* testInlineThenWithNamespaceRelativeNameAndNothingElse */
69
-$ternary = true ? Partially\CONSTANT_NAME : null;
+$ternary = true ? namespace\CONSTANT_NAME : null;
70
71
/* testInlineThenWithNamespaceRelativeNameAndParens */
72
-$ternary = true ? Partially\callMe() : null;
+$ternary = true ? namespace\callMe() : null;
73
74
/* testInlineThenWithNamespaceRelativeNameAndDoubleColon */
75
-$ternary = true ? Partially\ClassName::callMe() : null;
+$ternary = true ? namespace\ClassName::callMe() : null;
0 commit comments