mirror of
https://github.com/danog/psalm.git
synced 2025-01-06 13:08:40 +01:00
10 lines
298 B
Markdown
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");
|
|
```
|