mirror of
https://github.com/danog/psalm.git
synced 2025-01-07 13:42:11 +01:00
11 lines
197 B
PHP
11 lines
197 B
PHP
<?php
|
|
namespace Psalm\Issue;
|
|
|
|
class MixedPropertyAssignment extends CodeIssue implements MixedIssue
|
|
{
|
|
public const ERROR_LEVEL = 1;
|
|
public const SHORTCODE = 33;
|
|
|
|
use MixedIssueTrait;
|
|
}
|