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