Skip to content

Commit

Permalink
More precise return type for mysqli_fetch_all()
Browse files Browse the repository at this point in the history
  • Loading branch information
oxan committed Jan 13, 2025
1 parent 76740fd commit 945e142
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/functionMap.php
Original file line number Diff line number Diff line change
Expand Up @@ -7473,7 +7473,7 @@
'mysqli_errno' => ['int', 'link'=>'mysqli'],
'mysqli_error' => ['string|null', 'link'=>'mysqli'],
'mysqli_error_list' => ['array', 'connection'=>'mysqli'],
'mysqli_fetch_all' => ['array', 'result'=>'mysqli_result', 'resulttype='=>'int'],
'mysqli_fetch_all' => ['list', 'result'=>'mysqli_result', 'resulttype='=>'int'],
'mysqli_fetch_array' => ['array|null|false', 'result'=>'mysqli_result', 'resulttype='=>'int'],
'mysqli_fetch_assoc' => ['array<string,string|int|float|null>|null|false', 'result'=>'mysqli_result'],
'mysqli_fetch_column' => ['null|int|float|string|false', 'result' => 'mysqli_result', 'column'=>'int'],
Expand Down Expand Up @@ -7525,7 +7525,7 @@
'mysqli_result::__construct' => ['void', 'link'=>'mysqli', 'resultmode='=>'int'],
'mysqli_result::close' => ['void'],
'mysqli_result::data_seek' => ['bool', 'offset'=>'int'],
'mysqli_result::fetch_all' => ['array', 'resulttype='=>'int'],
'mysqli_result::fetch_all' => ['list', 'resulttype='=>'int'],
'mysqli_result::fetch_array' => ['array|null|false', 'resulttype='=>'int'],
'mysqli_result::fetch_assoc' => ['array<string,string|int|float|null>|null|false'],
'mysqli_result::fetch_column' => ['null|int|float|string|false', 'column'=>'int'],
Expand Down

0 comments on commit 945e142

Please sign in to comment.