mirror of
https://github.com/danog/psalm.git
synced 2025-01-10 23:18:40 +01:00
8b07e69645
Add if-this-is
228 lines
4.1 KiB
PHP
228 lines
4.1 KiB
PHP
<?php
|
|
namespace Psalm\Internal\Scanner;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class FunctionDocblockComment
|
|
{
|
|
/**
|
|
* @var string|null
|
|
*/
|
|
public $return_type;
|
|
|
|
/**
|
|
* @var string|null
|
|
*/
|
|
public $return_type_description;
|
|
|
|
/**
|
|
* @var int|null
|
|
*/
|
|
public $return_type_start;
|
|
|
|
/**
|
|
* @var int|null
|
|
*/
|
|
public $return_type_end;
|
|
|
|
/**
|
|
* @var int|null
|
|
*/
|
|
public $return_type_line_number;
|
|
|
|
/**
|
|
* @var array<
|
|
* int,
|
|
* array{
|
|
* name:string,
|
|
* type:string,
|
|
* line_number: int,
|
|
* start: int,
|
|
* end: int,
|
|
* description?: string
|
|
* }
|
|
* >
|
|
*/
|
|
public $params = [];
|
|
|
|
/**
|
|
* @var array<int, array{name:string, type:string, line_number: int}>
|
|
*/
|
|
public $params_out = [];
|
|
|
|
/**
|
|
* @var array{type:string, line_number: int}|null
|
|
*/
|
|
public $self_out;
|
|
|
|
/**
|
|
* @var array{type:string, line_number: int}|null
|
|
*/
|
|
public $if_this_is;
|
|
|
|
/**
|
|
* @var array<int, array{name:string, type:string, line_number: int}>
|
|
*/
|
|
public $globals = [];
|
|
|
|
/**
|
|
* Whether or not the function is deprecated
|
|
*
|
|
* @var bool
|
|
*/
|
|
public $deprecated = false;
|
|
|
|
/**
|
|
* If set, the function is internal to the given namespace.
|
|
*
|
|
* @var null|string
|
|
*/
|
|
public $psalm_internal;
|
|
|
|
/**
|
|
* Whether or not the function is internal
|
|
*
|
|
* @var bool
|
|
*/
|
|
public $internal = false;
|
|
|
|
/**
|
|
* Whether or not the function uses get_args
|
|
*
|
|
* @var bool
|
|
*/
|
|
public $variadic = false;
|
|
|
|
/**
|
|
* Whether or not the function is pure
|
|
*
|
|
* @var bool
|
|
*/
|
|
public $pure = false;
|
|
|
|
/**
|
|
* Whether or not to specialize a given call (useful for taint analysis)
|
|
*
|
|
* @var bool
|
|
*/
|
|
public $specialize_call = false;
|
|
|
|
/**
|
|
* Represents the flow from function params to return type
|
|
*
|
|
* @var array<string>
|
|
*/
|
|
public $flows = [];
|
|
|
|
/**
|
|
* @var array<string>
|
|
*/
|
|
public $added_taints = [];
|
|
|
|
/**
|
|
* @var array<string>
|
|
*/
|
|
public $removed_taints = [];
|
|
|
|
/**
|
|
* @var array<int, array{name:string, taint: string}>
|
|
*/
|
|
public $taint_sink_params = [];
|
|
|
|
/**
|
|
* @var array<string>
|
|
*/
|
|
public $taint_source_types = [];
|
|
|
|
/**
|
|
* @var array<int, array{name:string}>
|
|
*/
|
|
public $assert_untainted_params = [];
|
|
|
|
/**
|
|
* 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<int, string>
|
|
*/
|
|
public $suppressed_issues = [];
|
|
|
|
/**
|
|
* @var array<int, array{0: string, 1: int, 2: int}>
|
|
*/
|
|
public $throws = [];
|
|
|
|
/**
|
|
* @var array<int, array{string, ?string, ?string, bool}>
|
|
*/
|
|
public $templates = [];
|
|
|
|
/**
|
|
* @var array<int, array{type: string, param_name: string}>
|
|
*/
|
|
public $assertions = [];
|
|
|
|
/**
|
|
* @var array<int, array{type: string, param_name: string}>
|
|
*/
|
|
public $if_true_assertions = [];
|
|
|
|
/**
|
|
* @var array<int, array{type: string, param_name: string}>
|
|
*/
|
|
public $if_false_assertions = [];
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $inheritdoc = false;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $mutation_free = false;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $external_mutation_free = false;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $no_named_args = false;
|
|
|
|
/** @var bool */
|
|
public $stub_override = false;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
public $since_php_major_version = 0;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
public $since_php_minor_version = 0;
|
|
|
|
/**
|
|
* @var ?string
|
|
*/
|
|
public $description;
|
|
|
|
/** @var array<string, array{lines:list<int>, suggested_replacement?:string}> */
|
|
public $unexpected_tags = [];
|
|
}
|