mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
mysqli_field_seek returns true
This commit is contained in:
parent
a69eddda24
commit
c757054144
@ -7903,7 +7903,7 @@ return [
|
||||
'mysqli_fetch_object' => ['object|false|null', 'result'=>'mysqli_result', 'class='=>'string', 'constructor_args='=>'array'],
|
||||
'mysqli_fetch_row' => ['list<null|int|float|string>|false|null', 'result'=>'mysqli_result'],
|
||||
'mysqli_field_count' => ['int', 'mysql'=>'mysqli'],
|
||||
'mysqli_field_seek' => ['bool', 'result'=>'mysqli_result', 'index'=>'int'],
|
||||
'mysqli_field_seek' => ['true', 'result'=>'mysqli_result', 'index'=>'int'],
|
||||
'mysqli_field_tell' => ['int', 'result'=>'mysqli_result'],
|
||||
'mysqli_free_result' => ['void', 'result'=>'mysqli_result'],
|
||||
'mysqli_get_cache_stats' => ['array|false'],
|
||||
@ -7957,7 +7957,7 @@ return [
|
||||
'mysqli_result::fetch_fields' => ['list<object{name:non-empty-string,orgname:string,table:string,orgtable:string,max_length:int,length:int,charsetnr:int,flags:int,type:int,decimals:int,db:string,def:string,catalog:string}>'],
|
||||
'mysqli_result::fetch_object' => ['object|false|null', 'class='=>'string', 'constructor_args='=>'array'],
|
||||
'mysqli_result::fetch_row' => ['list<null|int|float|string>|false|null'],
|
||||
'mysqli_result::field_seek' => ['bool', 'index'=>'int'],
|
||||
'mysqli_result::field_seek' => ['true', 'index'=>'int'],
|
||||
'mysqli_result::free' => ['void'],
|
||||
'mysqli_result::free_result' => ['void'],
|
||||
'mysqli_rollback' => ['bool', 'mysql'=>'mysqli', 'flags='=>'int', 'name='=>'?string'],
|
||||
|
@ -240,6 +240,14 @@ return [
|
||||
'old' => ['string', 'locale'=>'string', 'displayLocale='=>'string'],
|
||||
'new' => ['string', 'locale'=>'string', 'displayLocale='=>'?string'],
|
||||
],
|
||||
'mysqli_field_seek' => [
|
||||
'old' => ['bool', 'result'=>'mysqli_result', 'index'=>'int'],
|
||||
'new' => ['true', 'result'=>'mysqli_result', 'index'=>'int'],
|
||||
],
|
||||
'mysqli_result::field_seek' => [
|
||||
'old' => ['bool', 'index'=>'int'],
|
||||
'new' => ['true', 'index'=>'int'],
|
||||
],
|
||||
'mysqli_stmt::__construct' => [
|
||||
'old' => ['void', 'mysql'=>'mysqli', 'query='=>'string'],
|
||||
'new' => ['void', 'mysql'=>'mysqli', 'query='=>'?string'],
|
||||
|
Loading…
Reference in New Issue
Block a user