PHPantom version
0.7.0
Installation method
Pre-built binary from GitHub Releases
Operating system
macOS aarch64 (Apple Silicon)
Editor
Sublime Text
Bug description
In this specific scenario:
- You're inside a function
- You have a foreach loop whose value is a reference value
phpantom will claim that your value variable is undefined.
Steps to reproduce
- Create a file with the following content:
<?php
function test()
{
$values = [1, 2, 3];
foreach ($values as &$value) {
$value = 4;
}
}
- Expected: No error, valid code
- Actual:
$value is underlined in red.
.phpantom.toml
no config file
PHPantom version
0.7.0
Installation method
Pre-built binary from GitHub Releases
Operating system
macOS aarch64 (Apple Silicon)
Editor
Sublime Text
Bug description
In this specific scenario:
phpantom will claim that your value variable is undefined.
Steps to reproduce
$valueis underlined in red..phpantom.toml
no config file