Skip to content

Commit

Permalink
Merge pull request #8308 from honca/4.x
Browse files Browse the repository at this point in the history
Fixed ini_set types for arg value
  • Loading branch information
AndrolGenhald committed Jul 22, 2022
2 parents 910bc57 + 8b59994 commit 640d3b6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dictionaries/CallMap.php
Expand Up @@ -6153,7 +6153,7 @@
'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'],
Expand Down
4 changes: 4 additions & 0 deletions dictionaries/CallMap_81_delta.php
Expand Up @@ -453,6 +453,10 @@
'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'],
Expand Down

0 comments on commit 640d3b6

Please sign in to comment.