*/ public $params = []; /** * @var array */ public $globals = []; /** * 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 array */ public $throws = []; /** @var int */ public $return_type_line_number; /** * @var array> */ public $template_type_names = []; /** * @var array */ public $template_typeofs = []; /** * @var array */ public $assertions = []; /** * @var array */ public $if_true_assertions = []; /** * @var array */ public $if_false_assertions = []; /** * @var array> */ public $type_aliases = []; }