noverify
noverify copied to clipboard
Handle isset/instanceof inside while cond as in if cond
Code Example
while (isset($x)) {
// use of $x inside a loop
}
Actual Behavior
Warning about undefined $x
.
Expected Behavior
No warnings.
instanceof also doesn't work inside while (COND)
context.