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

18 lines
423 B
Markdown
Raw Normal View History

# UnusedIssueHandlerSuppression
Emitted when an issue type suppression in the configuration file is not being used to suppress an issue.
Enabled by [findUnusedIssueHandlerSuppression](../configuration.md#findunusedissuehandlersuppression)
```php
<?php
$a = 'Hello, World!';
echo $a;
```
```xml
<?xml version="1.0" encoding="UTF-8"?>
<issueHandlers>
<PossiblyNullOperand errorLevel="suppress"/>
</issueHandlers>
```