mirror of
https://github.com/danog/psalm.git
synced 2025-01-10 06:58:41 +01:00
18 lines
378 B
PHP
18 lines
378 B
PHP
<?php
|
|
|
|
namespace Psalm\Issue;
|
|
|
|
use Psalm\CodeLocation;
|
|
|
|
final class MissingConstructor extends CodeIssue
|
|
{
|
|
public const ERROR_LEVEL = 2;
|
|
public const SHORTCODE = 73;
|
|
|
|
public function __construct(string $message, CodeLocation $code_location, ?string $dupe_key)
|
|
{
|
|
parent::__construct($message, $code_location);
|
|
$this->dupe_key = $dupe_key;
|
|
}
|
|
}
|