vscode-intelephense
vscode-intelephense copied to clipboard
Undefined constant - false positive inside if defined() block
Hello,
Describe the bug PHP Constants throw the "Undefined constant" error but they shouldn't if they're inside an "if defined(...)" condition
To Reproduce
if (defined('MY_CONSTANT')) {
echo MY_CONSTANT; // throws the false positive error
}