2017-02-10 02:35:17 +01:00
|
|
|
<?php
|
2018-11-06 03:57:36 +01:00
|
|
|
namespace Psalm\Internal\Scanner;
|
2017-02-10 02:35:17 +01:00
|
|
|
|
|
|
|
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>>
|
|
|
|
*/
|
2018-06-19 19:19:34 +02:00
|
|
|
public $template_type_names = [];
|
2017-05-05 00:35:05 +02:00
|
|
|
|
2018-05-28 23:26:43 +02:00
|
|
|
/**
|
|
|
|
* @var array<int, string>
|
|
|
|
*/
|
|
|
|
public $template_parents = [];
|
|
|
|
|
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
|
|
|
|
2018-04-22 04:13:10 +02:00
|
|
|
/**
|
2018-06-14 23:20:02 +02:00
|
|
|
* @var array<int, \PhpParser\Node\Stmt\ClassMethod>
|
2018-04-22 04:13:10 +02:00
|
|
|
*/
|
|
|
|
public $methods = [];
|
|
|
|
|
2017-11-17 02:47:58 +01:00
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public $sealed_properties = false;
|
|
|
|
|
2018-04-22 06:40:30 +02:00
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public $sealed_methods = false;
|
|
|
|
|
2017-09-13 17:32:13 +02:00
|
|
|
/**
|
|
|
|
* @var array<int, string>
|
|
|
|
*/
|
|
|
|
public $suppressed_issues = [];
|
2017-02-10 02:35:17 +01:00
|
|
|
}
|