mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
Merge pull request #6447 from brayniverse/master
This commit is contained in:
commit
d17f1bd7b3
@ -8447,6 +8447,7 @@ return [
|
||||
'mysqli_fetch_all' => ['array', 'result'=>'mysqli_result', 'mode='=>'int'],
|
||||
'mysqli_fetch_array' => ['?array', 'result'=>'mysqli_result', 'mode='=>'int'],
|
||||
'mysqli_fetch_assoc' => ['array<string,string>|null', 'result'=>'mysqli_result'],
|
||||
'mysqli_fetch_column' => ['null|int|float|string|false', 'result'=>'mysqli_result', 'column='=>'int'],
|
||||
'mysqli_fetch_field' => ['object|false', 'result'=>'mysqli_result'],
|
||||
'mysqli_fetch_field_direct' => ['object|false', 'result'=>'mysqli_result', 'index'=>'int'],
|
||||
'mysqli_fetch_fields' => ['array|false', 'result'=>'mysqli_result'],
|
||||
@ -8498,6 +8499,7 @@ return [
|
||||
'mysqli_result::fetch_all' => ['array', 'mode='=>'int'],
|
||||
'mysqli_result::fetch_array' => ['?array', 'mode='=>'int'],
|
||||
'mysqli_result::fetch_assoc' => ['array<string,string>|null'],
|
||||
'mysqli_result::fetch_column' => ['null|int|float|string|false', 'column='=>'int'],
|
||||
'mysqli_result::fetch_field' => ['object|false'],
|
||||
'mysqli_result::fetch_field_direct' => ['object|false', 'index'=>'int'],
|
||||
'mysqli_result::fetch_fields' => ['array|false'],
|
||||
|
@ -19,6 +19,8 @@ return [
|
||||
'array_is_list' => ['bool', 'array' => 'array'],
|
||||
'fsync' => ['bool', 'stream' => 'resource'],
|
||||
'fdatasync' => ['bool', 'stream' => 'resource'],
|
||||
'mysqli_fetch_column' => ['null|int|float|string|false', 'result'=>'mysqli_result', 'column='=>'int'],
|
||||
'mysqli_result::fetch_column' => ['null|int|float|string|false', 'column='=>'int'],
|
||||
],
|
||||
|
||||
'changed' => [
|
||||
|
Loading…
Reference in New Issue
Block a user