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