UndefinedTrace
April 9, 2020 ยท View on GitHub
Attempt to trace an undefined variable
<?php
/** @psalm-trace $x */
echo 'Hello World!';
How to fix
Provide existing variable or remove it
April 9, 2020 ยท View on GitHub
Attempt to trace an undefined variable
<?php
/** @psalm-trace $x */
echo 'Hello World!';
Provide existing variable or remove it