mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
74749d20cc
Ref #4590
17 lines
273 B
Markdown
17 lines
273 B
Markdown
# TaintedSystemSecret
|
||
|
||
Emitted when data marked as a system secret is detected somewhere it shouldn’t be.
|
||
|
||
```php
|
||
<?php
|
||
|
||
/**
|
||
* @psalm-taint-source system_secret
|
||
*/
|
||
function getConfigValue(string $data) {
|
||
return "$omePa$$word";
|
||
}
|
||
|
||
echo getConfigValue("secret");
|
||
```
|