Skip to content

Commit 2e32030

Browse files
dktappsondrejmirtes
authored andcommitted
functionMap: fixed incorrect signatures for igbinary_serialize() and igbinary_unserialize()
In particular, igbinary_serialize() may return null on error.
1 parent aae510e commit 2e32030

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/functionMap.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4507,8 +4507,8 @@
45074507
'ifxus_seek_slob' => ['int', 'bid'=>'int', 'mode'=>'int', 'offset'=>'int'],
45084508
'ifxus_tell_slob' => ['int', 'bid'=>'int'],
45094509
'ifxus_write_slob' => ['int', 'bid'=>'int', 'content'=>'string'],
4510-
'igbinary_serialize' => ['string', 'value'=>''],
4511-
'igbinary_unserialize' => ['', 'str'=>'string'],
4510+
'igbinary_serialize' => ['string|null', 'value'=>'mixed'],
4511+
'igbinary_unserialize' => ['mixed', 'str'=>'string'],
45124512
'ignore_user_abort' => ['int', 'value='=>'bool'],
45134513
'iis_add_server' => ['int', 'path'=>'string', 'comment'=>'string', 'server_ip'=>'string', 'port'=>'int', 'host_name'=>'string', 'rights'=>'int', 'start_server'=>'int'],
45144514
'iis_get_dir_security' => ['int', 'server_instance'=>'int', 'virtual_path'=>'string'],

0 commit comments

Comments
 (0)