1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-06 13:08:40 +01:00
psalm/docs/running_psalm/issues/ForbiddenEcho.md
2022-01-14 19:31:03 +01:00

10 lines
298 B
Markdown

# ForbiddenEcho
Emitted when Psalm encounters an echo statement and the `forbidEcho` flag in your config is set to `true`
This issue is deprecated and will be removed in Psalm 5. Adding echo to forbiddenFunctions in config will result in ForbiddenCode issue instead
```php
<?php
echo("bah");
```