mirror of
https://github.com/danog/psalm.git
synced 2024-12-15 10:57:08 +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
22 lines
422 B
PHP
22 lines
422 B
PHP
<?php
|
|
namespace Psalm\Issue;
|
|
|
|
use function strtolower;
|
|
|
|
abstract class FunctionIssue extends CodeIssue
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $function_id;
|
|
|
|
public function __construct(
|
|
string $message,
|
|
\Psalm\CodeLocation $code_location,
|
|
string $function_id
|
|
) {
|
|
parent::__construct($message, $code_location);
|
|
$this->function_id = strtolower($function_id);
|
|
}
|
|
}
|