mirror of
https://github.com/danog/psalm.git
synced 2024-12-04 18:48:03 +01:00
25 lines
441 B
PHP
25 lines
441 B
PHP
<?php
|
|
|
|
namespace Psalm\Issue;
|
|
|
|
use Psalm\CodeLocation;
|
|
|
|
use function strtolower;
|
|
|
|
abstract class FunctionIssue extends CodeIssue
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $function_id;
|
|
|
|
public function __construct(
|
|
string $message,
|
|
CodeLocation $code_location,
|
|
string $function_id
|
|
) {
|
|
parent::__construct($message, $code_location);
|
|
$this->function_id = strtolower($function_id);
|
|
}
|
|
}
|