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