1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-04 02:27:59 +01:00
psalm/docs/running_psalm/issues/TaintedCallable.md
Daniel Schmelz 9c67b85f39
Fix typos
2022-08-20 23:29:03 +02:00

20 lines
308 B
Markdown

# TaintedCallable
Emitted when tainted text is used in an arbitrary function call.
This can lead to dangerous situations, like running arbitrary functions.
```php
<?php
$name = $_GET["name"];
evalCode($name);
function evalCode(string $name) {
if (is_callable($name)) {
$name();
}
}
```