1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00

fixed RarArchive signatures (#2641)

This commit is contained in:
Alfred Bez 2020-01-16 17:01:14 +01:00 committed by Matthew Brown
parent 26bf183430
commit 619ced135b

View File

@ -10386,14 +10386,14 @@ return [
'rar_solid_is' => ['bool', 'rarfile'=>'rararchive'],
'rar_wrapper_cache_stats' => ['string'],
'RarArchive::__toString' => ['string'],
'RarArchive::close' => ['bool', 'rarfile'=>'RarArchive'],
'RarArchive::getComment' => ['?string', 'rarfile'=>'RarArchive'],
'RarArchive::getEntries' => ['RarEntry[]|false', 'rarfile'=>'RarArchive'],
'RarArchive::getEntry' => ['RarEntry|false', 'entryname'=>'string', 'rarfile'=>'RarArchive'],
'RarArchive::isBroken' => ['bool', 'rarfile'=>'RarArchive'],
'RarArchive::isSolid' => ['bool', 'rarfile'=>'RarArchive'],
'RarArchive::close' => ['bool'],
'RarArchive::getComment' => ['string|null'],
'RarArchive::getEntries' => ['RarEntry[]|false'],
'RarArchive::getEntry' => ['RarEntry|false', 'entryname'=>'string'],
'RarArchive::isBroken' => ['bool'],
'RarArchive::isSolid' => ['bool'],
'RarArchive::open' => ['RarArchive|false', 'filename'=>'string', 'password='=>'string', 'volume_callback='=>'callable'],
'RarArchive::setAllowBroken' => ['bool', 'allow_broken'=>'bool', 'rarfile'=>'RarArchive'],
'RarArchive::setAllowBroken' => ['bool', 'allow_broken'=>'bool'],
'RarEntry::__toString' => ['string'],
'RarEntry::extract' => ['bool', 'dir'=>'string', 'filepath='=>'string', 'password='=>'string', 'extended_data='=>'bool'],
'RarEntry::getAttr' => ['int|false'],