1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-12 09:19:40 +01:00

Allow self_out to be null

This commit is contained in:
Olle 2020-06-30 16:00:33 +00:00
parent e6626f8cb3
commit 1aec75292a

View File

@ -42,9 +42,9 @@ class FunctionDocblockComment
public $params_out = [];
/**
* @var array{type:string, line_number: int}
* @var array{type:string, line_number: int}|null
*/
public $self_out = [];
public $self_out;
/**
* @var array<int, array{name:string, type:string, line_number: int}>