mirror of
https://github.com/danog/psalm.git
synced 2024-12-14 10:17:33 +01:00
33 lines
547 B
PHP
33 lines
547 B
PHP
<?php
|
|
namespace Psalm;
|
|
|
|
class ClassLikeDocblockComment
|
|
{
|
|
/**
|
|
* Whether or not the class is deprecated
|
|
*
|
|
* @var bool
|
|
*/
|
|
public $deprecated = false;
|
|
|
|
/**
|
|
* @var array<int, array<int, string>>
|
|
*/
|
|
public $template_types = [];
|
|
|
|
/**
|
|
* @var array<int, array{name:string, type:string, line_number: int}>
|
|
*/
|
|
public $properties = [];
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $sealed_properties = false;
|
|
|
|
/**
|
|
* @var array<int, string>
|
|
*/
|
|
public $suppressed_issues = [];
|
|
}
|