1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-04 18:48:03 +01:00
psalm/src/Psalm/Issue/FunctionIssue.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);
}
}