mirror of
https://github.com/danog/psalm.git
synced 2024-12-13 17:57:37 +01:00
33 lines
426 B
PHP
33 lines
426 B
PHP
<?php
|
|
namespace Psalm;
|
|
|
|
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 function is deprecated
|
|
*
|
|
* @var bool
|
|
*/
|
|
public $deprecated = false;
|
|
}
|