UndefinedTrace
Attempt to trace an undefined variable
<?php
/** @psalm-trace $x */
echo 'Hello World!';
How to fix
Provide existing variable or remove it
Attempt to trace an undefined variable
<?php
/** @psalm-trace $x */
echo 'Hello World!';
Provide existing variable or remove it