Skip to content

Commit fc233da

Browse files
authored
Merge pull request #9736 from kamil-tekiela/SplDoublyLinkedList
SplDoublyLinkedList's index is always int
2 parents a5effd2 + 59d3793 commit fc233da

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

dictionaries/CallMap.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12264,10 +12264,10 @@
1226412264
'SplDoublyLinkedList::isEmpty' => ['bool'],
1226512265
'SplDoublyLinkedList::key' => ['int'],
1226612266
'SplDoublyLinkedList::next' => ['void'],
12267-
'SplDoublyLinkedList::offsetExists' => ['bool', 'index'=>'mixed'],
12268-
'SplDoublyLinkedList::offsetGet' => ['mixed', 'index'=>'mixed'],
12269-
'SplDoublyLinkedList::offsetSet' => ['void', 'index'=>'mixed', 'value'=>'mixed'],
12270-
'SplDoublyLinkedList::offsetUnset' => ['void', 'index'=>'mixed'],
12267+
'SplDoublyLinkedList::offsetExists' => ['bool', 'index'=>'int'],
12268+
'SplDoublyLinkedList::offsetGet' => ['mixed', 'index'=>'int'],
12269+
'SplDoublyLinkedList::offsetSet' => ['void', 'index'=>'?int', 'value'=>'mixed'],
12270+
'SplDoublyLinkedList::offsetUnset' => ['void', 'index'=>'int'],
1227112271
'SplDoublyLinkedList::pop' => ['mixed'],
1227212272
'SplDoublyLinkedList::prev' => ['void'],
1227312273
'SplDoublyLinkedList::push' => ['void', 'value'=>'mixed'],

dictionaries/CallMap_historical.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7488,10 +7488,10 @@
74887488
'SplDoublyLinkedList::isEmpty' => ['bool'],
74897489
'SplDoublyLinkedList::key' => ['int'],
74907490
'SplDoublyLinkedList::next' => ['void'],
7491-
'SplDoublyLinkedList::offsetExists' => ['bool', 'index'=>'mixed'],
7492-
'SplDoublyLinkedList::offsetGet' => ['mixed', 'index'=>'mixed'],
7493-
'SplDoublyLinkedList::offsetSet' => ['void', 'index'=>'mixed', 'value'=>'mixed'],
7494-
'SplDoublyLinkedList::offsetUnset' => ['void', 'index'=>'mixed'],
7491+
'SplDoublyLinkedList::offsetExists' => ['bool', 'index'=>'int'],
7492+
'SplDoublyLinkedList::offsetGet' => ['mixed', 'index'=>'int'],
7493+
'SplDoublyLinkedList::offsetSet' => ['void', 'index'=>'?int', 'value'=>'mixed'],
7494+
'SplDoublyLinkedList::offsetUnset' => ['void', 'index'=>'int'],
74957495
'SplDoublyLinkedList::pop' => ['mixed'],
74967496
'SplDoublyLinkedList::prev' => ['void'],
74977497
'SplDoublyLinkedList::push' => ['void', 'value'=>'mixed'],

0 commit comments

Comments
 (0)