mirror of
https://github.com/danog/psalm.git
synced 2024-12-15 10:57:08 +01:00
60 lines
1.0 KiB
PHP
60 lines
1.0 KiB
PHP
<?php
|
|
namespace Psalm\Storage;
|
|
|
|
use Psalm\CodeLocation;
|
|
use Psalm\Internal\Analyzer\ClassLikeAnalyzer;
|
|
use Psalm\Type;
|
|
|
|
class ClassConstantStorage
|
|
{
|
|
/**
|
|
* @var ?Type\Union
|
|
*/
|
|
public $type;
|
|
|
|
/**
|
|
* @var ClassLikeAnalyzer::VISIBILITY_*
|
|
*/
|
|
public $visibility = ClassLikeAnalyzer::VISIBILITY_PUBLIC;
|
|
|
|
/**
|
|
* @var ?CodeLocation
|
|
*/
|
|
public $location;
|
|
|
|
/**
|
|
* @var ?CodeLocation
|
|
*/
|
|
public $stmt_location;
|
|
|
|
/**
|
|
* @var ?\Psalm\Internal\Scanner\UnresolvedConstantComponent
|
|
*/
|
|
public $unresolved_node;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $deprecated = false;
|
|
|
|
/**
|
|
* @var list<AttributeStorage>
|
|
*/
|
|
public $attributes = [];
|
|
|
|
/**
|
|
* @var ?string
|
|
*/
|
|
public $description;
|
|
|
|
/**
|
|
* @param ClassLikeAnalyzer::VISIBILITY_* $visibility
|
|
*/
|
|
public function __construct(?Type\Union $type, int $visibility, ?CodeLocation $location)
|
|
{
|
|
$this->visibility = $visibility;
|
|
$this->location = $location;
|
|
$this->type = $type;
|
|
}
|
|
}
|