mirror of
https://github.com/danog/psalm.git
synced 2024-12-15 19:07:00 +01:00
10 lines
163 B
PHP
10 lines
163 B
PHP
|
<?php
|
||
|
|
||
|
namespace Psalm\Issue;
|
||
|
|
||
|
class ImplementationRequirementViolation extends CodeIssue
|
||
|
{
|
||
|
public const ERROR_LEVEL = -1;
|
||
|
public const SHORTCODE = 240;
|
||
|
}
|