1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-15 10:57:08 +01:00
psalm/src/Psalm/Internal/Scanner/UnresolvedConstant/ClassConstant.php

24 lines
424 B
PHP
Raw Normal View History

<?php
namespace Psalm\Internal\Scanner\UnresolvedConstant;
use Psalm\Internal\Scanner\UnresolvedConstantComponent;
/**
* @psalm-immutable
*/
class ClassConstant extends UnresolvedConstantComponent
{
/** @var string */
public $fqcln;
/** @var string */
public $name;
public function __construct(string $fqcln, string $name)
{
$this->fqcln = $fqcln;
$this->name = $name;
}
}