## Problem A variable is not counted as used in a short open echo tag: ```php = $a ?> ``` ## Cases that currently work The sniff will correctly identify this variable as used if another statement follows it (or another short open echo tag): ```php = $a ?> = 'more' ?> ``` It also correctly identifies the variable as used if the short echo tag includes a semicolon: ```php = $a; ?> ```