1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-10 15:09:04 +01:00
psalm/src/Psalm/Issue/ClassConstantIssue.php

23 lines
396 B
PHP
Raw Normal View History

<?php
2022-01-20 23:51:55 +01:00
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;
}
}