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