1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-12 01:09:38 +01:00
psalm/docs/running_psalm/issues/TaintedSleep.md

10 lines
141 B
Markdown
Raw Normal View History

2023-09-06 13:52:55 +02:00
# TaintedSleep
Emitted when user-controlled input can be passed into a `sleep` call or similar.
```php
<?php
sleep($_GET["seconds"]);
```