mirror of
https://github.com/danog/psalm.git
synced 2025-01-22 13:51:54 +01:00
12 lines
185 B
PHP
12 lines
185 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psalm\Issue;
|
|
|
|
final class UndefinedPropertyFetch extends PropertyIssue
|
|
{
|
|
public const ERROR_LEVEL = 6;
|
|
public const SHORTCODE = 39;
|
|
}
|