1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 05:41:20 +01:00

fixup! RedisCluster::setOption() argument types incorrect #4708

This commit is contained in:
blackie 2021-11-07 20:18:31 +01:00
parent a6b91384c1
commit 159a42c581

View File

@ -36,6 +36,10 @@ return [
'old' => ['resource|false', 'command'=>'string', 'descriptorspec'=>'array', '&w_pipes'=>'resource[]', 'cwd='=>'?string', 'env='=>'?array', 'other_options='=>'array'],
'new' => ['resource|false', 'cmd'=>'string|array', 'descriptorspec'=>'array', '&w_pipes'=>'resource[]', 'cwd='=>'?string', 'env='=>'?array', 'other_options='=>'array'],
],
'RedisCluster::setOption' => [
'old' => ['bool', 'name'=>'string', 'value'=>'string'],
'new' => ['bool', 'name'=>'string|int', 'value'=>'string|int'],
]
],
'removed' => [
],