mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 17:52:45 +01:00
210 B
210 B
TaintedHtml
Emitted when tainted input detection is turned on and tainted HTML is detected.
<?php
$name = $_GET["name"];
printName($name);
function printName(string $name) {
echo $name;
}