1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-14 02:07:37 +01:00
psalm/src/Psalm/VarDocblockComment.php

28 lines
363 B
PHP
Raw Normal View History

<?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
2017-05-27 02:16:18 +02:00
*
* @var bool
*/
public $deprecated = false;
}