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

23 lines
403 B
PHP

<?php
namespace Psalm\Issue;
use Psalm\CodeLocation;
abstract class PropertyIssue extends CodeIssue
{
/**
* @var string
*/
public $property_id;
public function __construct(
string $message,
CodeLocation $code_location,
string $property_id
) {
parent::__construct($message, $code_location);
$this->property_id = $property_id;
}
}