mirror of
https://github.com/danog/psalm.git
synced 2025-01-10 15:09:04 +01:00
23 lines
396 B
PHP
23 lines
396 B
PHP
<?php
|
|
|
|
namespace Psalm\Issue;
|
|
|
|
use Psalm\CodeLocation;
|
|
|
|
abstract class ClassConstantIssue extends CodeIssue
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $const_id;
|
|
|
|
public function __construct(
|
|
string $message,
|
|
CodeLocation $code_location,
|
|
string $const_id
|
|
) {
|
|
parent::__construct($message, $code_location);
|
|
$this->const_id = $const_id;
|
|
}
|
|
}
|