mirror of
https://github.com/danog/psalm.git
synced 2024-12-12 09:19:40 +01:00
18 lines
423 B
Markdown
18 lines
423 B
Markdown
|
# 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>
|
||
|
```
|