Skip to content

Commit

Permalink
Updated return values for zip_open
Browse files Browse the repository at this point in the history
Added int and false as possible return values
  • Loading branch information
spud authored and ondrejmirtes committed Jan 6, 2021
1 parent db0a5f6 commit 17106cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/functionMap.php
Original file line number Diff line number Diff line change
Expand Up @@ -13721,7 +13721,7 @@
'zip_entry_name' => ['string|false', 'zip_entry'=>'resource'],
'zip_entry_open' => ['bool', 'zip_dp'=>'resource', 'zip_entry'=>'resource', 'mode='=>'string'],
'zip_entry_read' => ['string|false', 'zip_entry'=>'resource', 'len='=>'int'],
'zip_open' => ['resource', 'filename'=>'string'],
'zip_open' => ['resource|false|int', 'filename'=>'string'],
'zip_read' => ['resource', 'zip'=>'resource'],
'ZipArchive::addEmptyDir' => ['bool', 'dirname'=>'string'],
'ZipArchive::addFile' => ['bool', 'filepath'=>'string', 'entryname='=>'string', 'start='=>'int', 'length='=>'int'],
Expand Down

0 comments on commit 17106cc

Please sign in to comment.