mirror of
https://github.com/danog/psalm.git
synced 2025-01-22 22:01:48 +01:00
Merge pull request #8308 from honca/4.x
Fixed ini_set types for arg value
This commit is contained in:
commit
640d3b646c
@ -6153,7 +6153,7 @@ return [
|
||||
'ini_get' => ['string|false', 'option'=>'string'],
|
||||
'ini_get_all' => ['array|false', 'extension='=>'?string', 'details='=>'bool'],
|
||||
'ini_restore' => ['void', 'option'=>'string'],
|
||||
'ini_set' => ['string|false', 'option'=>'string', 'value'=>'string'],
|
||||
'ini_set' => ['string|false', 'option'=>'string', 'value'=>'string|int|float|bool|null'],
|
||||
'inotify_add_watch' => ['int', 'inotify_instance'=>'resource', 'pathname'=>'string', 'mask'=>'int'],
|
||||
'inotify_init' => ['resource|false'],
|
||||
'inotify_queue_len' => ['int', 'inotify_instance'=>'resource'],
|
||||
|
@ -453,6 +453,10 @@ return [
|
||||
'old' => ['bool', 'imap'=>'resource', 'mailbox'=>'string'],
|
||||
'new' => ['bool', 'imap'=>'IMAP\Connection', 'mailbox'=>'string'],
|
||||
],
|
||||
'ini_set' => [
|
||||
'old' => ['string|false', 'option'=>'string', 'value'=>'string'],
|
||||
'new' => ['string|false', 'option'=>'string', 'value'=>'string|int|float|bool|null'],
|
||||
],
|
||||
'ldap_add' => [
|
||||
'old' => ['bool', 'ldap'=>'resource', 'dn'=>'string', 'entry'=>'array', 'controls='=>'array'],
|
||||
'new' => ['bool', 'ldap'=>'LDAP\Connection', 'dn'=>'string', 'entry'=>'array', 'controls='=>'?array'],
|
||||
|
Loading…
x
Reference in New Issue
Block a user