Skip to content

Commit 95bd28b

Browse files
committed
Update docblock
1 parent 1d7920d commit 95bd28b

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

src/InnerList.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ public function offsetUnset($offset): void
243243
* @param Item|ByteSequence|Token|bool|int|float|string $value the member to add
244244
*
245245
* @see ::push
246-
* @see ::insert
246+
* @see ::replace
247247
*/
248248
public function offsetSet($offset, $value): void
249249
{

src/OrderedList.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,6 @@ public function offsetExists($offset): bool
225225
}
226226

227227
/**
228-
*
229228
* @param int $offset the integer index of the member to retrieve.
230229
*
231230
* @see ::get
@@ -236,7 +235,6 @@ public function offsetGet($offset): Item|InnerList
236235
}
237236

238237
/**
239-
*
240238
* @param int $offset the integer index of the member to remove
241239
*
242240
* @see ::remove
@@ -248,12 +246,11 @@ public function offsetUnset($offset): void
248246
}
249247

250248
/**
251-
*
252249
* @param int|null $offset the integer index of member to add or update
253250
* @param InnerList|Item|ByteSequence|Token|bool|int|float|string $value the member to add
254251
*
255252
* @see ::push
256-
* @see ::insert
253+
* @see ::replace
257254
*/
258255
public function offsetSet($offset, $value): void
259256
{

0 commit comments

Comments
 (0)