mirror of
https://github.com/danog/psalm.git
synced 2024-12-14 10:17:33 +01:00
27 lines
359 B
PHP
27 lines
359 B
PHP
|
<?php
|
||
|
namespace Psalm;
|
||
|
|
||
|
class VarDocblockComment
|
||
|
{
|
||
|
/**
|
||
|
* @var Type\Union
|
||
|
*/
|
||
|
public $type;
|
||
|
|
||
|
/**
|
||
|
* @var string|null
|
||
|
*/
|
||
|
public $var_id = null;
|
||
|
|
||
|
/**
|
||
|
* @var int|null
|
||
|
*/
|
||
|
public $line_number;
|
||
|
|
||
|
/**
|
||
|
* Whether or not the function is deprecated
|
||
|
* @var boolean
|
||
|
*/
|
||
|
public $deprecated = false;
|
||
|
}
|