mirror of
https://github.com/danog/psalm.git
synced 2025-01-09 06:28:36 +01:00
12 lines
196 B
PHP
12 lines
196 B
PHP
<?php
|
|
|
|
namespace Psalm\Issue;
|
|
|
|
final class MixedMethodCall extends CodeIssue implements MixedIssue
|
|
{
|
|
public const ERROR_LEVEL = 1;
|
|
public const SHORTCODE = 15;
|
|
|
|
use MixedIssueTrait;
|
|
}
|