mirror of
https://github.com/danog/psalm.git
synced 2025-01-10 06:58:41 +01:00
12 lines
197 B
PHP
12 lines
197 B
PHP
<?php
|
|
|
|
namespace Psalm\Issue;
|
|
|
|
final class MixedArrayOffset extends CodeIssue implements MixedIssue
|
|
{
|
|
public const ERROR_LEVEL = 1;
|
|
public const SHORTCODE = 31;
|
|
|
|
use MixedIssueTrait;
|
|
}
|