1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 22:01:48 +01:00
psalm/docs/running_psalm/issues/UnusedPsalmSuppress.md

11 lines
231 B
Markdown
Raw Normal View History

2020-03-19 12:32:49 -04:00
# UnusedPsalmSuppress
Emitted when `--find-unused-psalm-suppress` is turned on and Psalm cannot find any uses of a given `@psalm-suppress` annotation
```php
2020-03-20 19:13:46 -04:00
<?php
2020-03-19 12:32:49 -04:00
/** @psalm-suppress InvalidArgument */
2020-09-10 19:05:47 -04:00
echo strlen("hello");
2020-03-19 12:32:49 -04:00
```