*/ public $params = []; /** * Whether or not the function is deprecated * * @var bool */ public $deprecated = false; /** * Whether or not the function uses get_args * * @var bool */ public $variadic = false; /** * Whether or not to ignore the nullability of this function's return type * * @var bool */ public $ignore_nullable_return = false; /** * Whether or not to ignore the nullability of this function's return type * * @var bool */ public $ignore_falsable_return = false; /** * @var array */ public $suppress = []; /** @var int */ public $return_type_line_number; /** * @var array> */ public $template_types = []; /** * @var array */ public $template_typeofs = []; }