mirror of
https://github.com/danog/psalm.git
synced 2025-01-07 13:42:11 +01:00
12 lines
172 B
PHP
12 lines
172 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psalm\Issue;
|
|
|
|
final class ReservedWord extends ClassIssue
|
|
{
|
|
public const ERROR_LEVEL = 7;
|
|
public const SHORTCODE = 95;
|
|
}
|