mirror of
https://github.com/danog/psalm.git
synced 2024-12-14 02:07:37 +01:00
8c7423505a
* add native param types * redundant phpdoc * add more param types and adds "?" to nullable types * remove redundant phpdoc * add more param types and remove redundant phpdoc * add more param types and remove redundant phpdoc
20 lines
405 B
PHP
20 lines
405 B
PHP
<?php
|
|
namespace Psalm\Issue;
|
|
|
|
abstract class ClassIssue extends CodeIssue
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $fq_classlike_name;
|
|
|
|
public function __construct(
|
|
string $message,
|
|
\Psalm\CodeLocation $code_location,
|
|
string $fq_classlike_name
|
|
) {
|
|
parent::__construct($message, $code_location);
|
|
$this->fq_classlike_name = $fq_classlike_name;
|
|
}
|
|
}
|