mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 09:37:59 +01:00
db566c7c4d
Ref #4590
273 B
273 B
TaintedSystemSecret
Emitted when data marked as a system secret is detected somewhere it shouldn’t be.
<?php
/**
* @psalm-taint-source system_secret
*/
function getConfigValue(string $data) {
return "$omePa$$word";
}
echo getConfigValue("secret");