mirror of
https://github.com/danog/psalm.git
synced 2024-12-12 17:27:28 +01:00
10 lines
141 B
Markdown
10 lines
141 B
Markdown
# TaintedSleep
|
|
|
|
Emitted when user-controlled input can be passed into a `sleep` call or similar.
|
|
|
|
```php
|
|
<?php
|
|
|
|
sleep($_GET["seconds"]);
|
|
```
|