Commit c82cdaa
authored
Update FunctionSignatureMap.php
`Redis::mget()` and `Redis::mset()` both expect one argument based on the stubs: https://github.com/phpredis/phpredis/blob/f5ed17048bde7c9e8ada04005b0773bbd99e5abf/redis.stub.php#L3033
But we got the following error in our CI before my changes:
```
test.php:10 PhanParamTooManyInternal Call with 1 arg(s) to \Redis::mget() which only takes 0 arg(s). This would throw an ArgumentCountError.
test.php:11 PhanParamTooManyInternal Call with 1 arg(s) to \Redis::mset() which only takes 0 arg(s). This would throw an ArgumentCountError.
```
Relates to #55231 parent d92a58b commit c82cdaa
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6559 | 6559 | | |
6560 | 6560 | | |
6561 | 6561 | | |
6562 | | - | |
| 6562 | + | |
6563 | 6563 | | |
6564 | 6564 | | |
6565 | | - | |
| 6565 | + | |
6566 | 6566 | | |
6567 | 6567 | | |
6568 | 6568 | | |
| |||
0 commit comments