2017-02-09 20:35:17 -05:00
|
|
|
<?php
|
|
|
|
namespace Psalm;
|
|
|
|
|
|
|
|
class ClassLikeDocblockComment
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Whether or not the class is deprecated
|
2017-05-26 20:16:18 -04:00
|
|
|
*
|
|
|
|
* @var bool
|
2017-02-09 20:35:17 -05:00
|
|
|
*/
|
|
|
|
public $deprecated = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array<int, array<int, string>>
|
|
|
|
*/
|
|
|
|
public $template_types = [];
|
2017-05-04 18:35:05 -04:00
|
|
|
|
|
|
|
/**
|
2017-12-14 11:22:27 -08:00
|
|
|
* @var array<int, array{name:string, type:string, tag:string, line_number:int}>
|
2017-05-04 18:35:05 -04:00
|
|
|
*/
|
|
|
|
public $properties = [];
|
2017-09-13 11:32:13 -04:00
|
|
|
|
2017-11-16 20:47:58 -05:00
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public $sealed_properties = false;
|
|
|
|
|
2017-09-13 11:32:13 -04:00
|
|
|
/**
|
|
|
|
* @var array<int, string>
|
|
|
|
*/
|
|
|
|
public $suppressed_issues = [];
|
2017-02-09 20:35:17 -05:00
|
|
|
}
|