2017-02-10 02:35:17 +01:00
|
|
|
<?php
|
2018-05-12 00:35:02 +02:00
|
|
|
namespace Psalm\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>>
|
|
|
|
*/
|
|
|
|
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
|
|
|
|
2018-04-22 04:13:10 +02:00
|
|
|
/**
|
|
|
|
* @var array<int, \PhpParser\Node\Stmt\Function_>
|
|
|
|
*/
|
|
|
|
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
|
|
|
}
|