Skip to content

Commit

Permalink
functionMap: fixed incorrect signatures for igbinary_serialize() and …
Browse files Browse the repository at this point in the history
…igbinary_unserialize()

In particular, igbinary_serialize() may return null on error.
  • Loading branch information
dktapps authored and ondrejmirtes committed Oct 26, 2021
1 parent aae510e commit 2e32030
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 @@ -4507,8 +4507,8 @@
'ifxus_seek_slob' => ['int', 'bid'=>'int', 'mode'=>'int', 'offset'=>'int'],
'ifxus_tell_slob' => ['int', 'bid'=>'int'],
'ifxus_write_slob' => ['int', 'bid'=>'int', 'content'=>'string'],
'igbinary_serialize' => ['string', 'value'=>''],
'igbinary_unserialize' => ['', 'str'=>'string'],
'igbinary_serialize' => ['string|null', 'value'=>'mixed'],
'igbinary_unserialize' => ['mixed', 'str'=>'string'],
'ignore_user_abort' => ['int', 'value='=>'bool'],
'iis_add_server' => ['int', 'path'=>'string', 'comment'=>'string', 'server_ip'=>'string', 'port'=>'int', 'host_name'=>'string', 'rights'=>'int', 'start_server'=>'int'],
'iis_get_dir_security' => ['int', 'server_instance'=>'int', 'virtual_path'=>'string'],
Expand Down

0 comments on commit 2e32030

Please sign in to comment.