We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd7dea7 commit c3951c4Copy full SHA for c3951c4
src/MemberOrderedMap.php
@@ -10,6 +10,11 @@
10
* @template TKey
11
* @template TValue of StructuredField
12
* @template-extends MemberContainer<TKey, TValue>
13
+ *
14
+ * @method static push(array ...$pairs) Inserts pair at the end of the member list
15
+ * @method static unshift(array ...$pairs) Inserts pair at the start of the member list
16
+ * @method static insert(int $index, array ...$pairs) Inserts pairs at the index
17
+ * @method static replace(int $index, array $pair) Replaces the pair at the given index
18
*/
19
interface MemberOrderedMap extends MemberContainer
20
{
0 commit comments