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

Fix ArrayIterator::setOffset param type

This commit is contained in:
Matthew Brown 2018-01-12 23:46:11 -05:00
parent 573260b16d
commit db7b80d391

View File

@ -201,7 +201,7 @@ return [
'ArrayIterator::next' => [''],
'ArrayIterator::offsetExists' => ['', 'index'=>'string'],
'ArrayIterator::offsetGet' => ['', 'index'=>'string'],
'ArrayIterator::offsetSet' => ['', 'index'=>'string', 'newval'=>'string'],
'ArrayIterator::offsetSet' => ['', 'index'=>'string', 'newval'=>''],
'ArrayIterator::offsetUnset' => ['', 'index'=>'string'],
'ArrayIterator::rewind' => [''],
'ArrayIterator::seek' => ['', 'position'=>'int'],