1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-14 18:36:58 +01:00
psalm/src/Psalm/Internal/Scanner/VarDocblockComment.php

52 lines
742 B
PHP
Raw Normal View History

<?php
2018-11-06 03:57:36 +01:00
namespace Psalm\Internal\Scanner;
use Psalm\Type;
/**
* @internal
*/
class VarDocblockComment
{
/**
* @var Type\Union
*/
public $type;
/**
* @var string
*/
public $original_type;
/**
* @var string|null
*/
public $var_id = null;
/**
* @var int|null
*/
public $line_number;
/**
* Whether or not the property is deprecated
2017-05-27 02:16:18 +02:00
*
* @var bool
*/
public $deprecated = false;
/**
* Whether or not the property is internal
*
* @var bool
*/
public $internal = false;
/**
* If set, the class is internal to the given namespace.
*
* @var null|string
*/
public $psalmInternal = null;
}