2016-11-13 05:59:31 +01:00
|
|
|
<?php
|
|
|
|
namespace Psalm;
|
|
|
|
|
|
|
|
class FunctionDocblockComment
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var string|null
|
|
|
|
*/
|
|
|
|
public $return_type = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array<int, array{name:string, type:string}>
|
|
|
|
*/
|
|
|
|
public $params = [];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether or not the function is deprecated
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
|
|
|
* @var bool
|
2016-11-13 05:59:31 +01:00
|
|
|
*/
|
|
|
|
public $deprecated = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether or not the function uses get_args
|
|
|
|
*
|
2017-05-27 02:16:18 +02:00
|
|
|
* @var bool
|
2016-11-13 05:59:31 +01:00
|
|
|
*/
|
|
|
|
public $variadic = false;
|
|
|
|
|
2017-05-10 18:36:11 +02:00
|
|
|
/**
|
|
|
|
* Whether or not to ignore the nullability of this function's return type
|
|
|
|
*
|
2017-05-27 02:16:18 +02:00
|
|
|
* @var bool
|
2017-05-10 18:36:11 +02:00
|
|
|
*/
|
|
|
|
public $ignore_nullable_return = false;
|
|
|
|
|
2016-11-13 05:59:31 +01:00
|
|
|
/**
|
2017-01-02 07:07:44 +01:00
|
|
|
* @var array<int, string>
|
2016-11-13 05:59:31 +01:00
|
|
|
*/
|
|
|
|
public $suppress = [];
|
2016-12-04 01:11:30 +01:00
|
|
|
|
|
|
|
/** @var int */
|
|
|
|
public $return_type_line_number;
|
2017-02-10 02:35:17 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array<int, array<int, string>>
|
|
|
|
*/
|
|
|
|
public $template_types = [];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array<int, array{template_type: string, param_name: string}>
|
|
|
|
*/
|
|
|
|
public $template_typeofs = [];
|
2016-11-13 05:59:31 +01:00
|
|
|
}
|