mirror of
https://github.com/danog/psalm.git
synced 2024-12-13 01:37:23 +01:00
12 lines
192 B
PHP
12 lines
192 B
PHP
<?php
|
|
|
|
namespace Psalm\Issue;
|
|
|
|
final class MixedClone extends CodeIssue implements MixedIssue
|
|
{
|
|
public const ERROR_LEVEL = 1;
|
|
public const SHORTCODE = 227;
|
|
|
|
use MixedIssueTrait;
|
|
}
|