1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-21 21:31:13 +01:00

Fix case of ZipArchive properties

The properties "numFiles" and "statusSys" use camelCase.

https://secure.php.net/manual/en/class.ziparchive.php
This commit is contained in:
Steffen Weber 2017-09-26 09:11:26 +02:00 committed by Matthew Brown
parent 5bd6228708
commit 4145119268

View File

@ -73,8 +73,8 @@ return [
],
'ziparchive' => [
'status' => 'int',
'statussys' => 'int',
'numfiles' => 'int',
'statusSys' => 'int',
'numFiles' => 'int',
'filename' => 'string',
'comment' => 'string',
],