1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-16 19:36:59 +01:00
psalm/src/Psalm/Storage/PropertyStorage.php

54 lines
734 B
PHP
Raw Normal View History

<?php
namespace Psalm\Storage;
use Psalm\CodeLocation;
use Psalm\Type;
class PropertyStorage
{
/**
* @var bool
*/
public $is_static;
/**
* @var int
*/
public $visibility;
/**
* @var CodeLocation|null
*/
public $location;
2017-03-02 04:27:52 +01:00
/**
* @var CodeLocation|null
*/
public $type_location;
/**
* @var Type\Union|false
*/
public $type;
/**
* @var Type\Union|null
*/
public $suggested_type;
/**
* @var bool
*/
public $has_default = false;
/**
* @var bool
*/
public $deprecated = false;
/**
* @var array<string, array<int, CodeLocation>>|null
*/
public $referencing_locations;
}