1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-13 01:37:23 +01:00
psalm/src/Psalm/ClassLikeDocblockComment.php

33 lines
558 B
PHP
Raw Normal View History

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 = [];
/**
* @var array<int, array{name:string, type:string, tag:string, line_number:int}>
*/
public $properties = [];
/**
* @var bool
*/
public $sealed_properties = false;
/**
* @var array<int, string>
*/
public $suppressed_issues = [];
2017-02-10 02:35:17 +01:00
}