Skip to content

Commit 8abf986

Browse files
author
Clifford Vickrey
committed
Restore docBlocks to original state
1 parent eefa782 commit 8abf986

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

src/Map.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -731,6 +731,9 @@ public function xor(Map $map): Map
731731
});
732732
}
733733

734+
/**
735+
* @inheritDoc
736+
*/
734737
#[\ReturnTypeWillChange]
735738
public function getIterator()
736739
{

src/PriorityQueue.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,9 @@ public function toArray(): array
288288
return $array;
289289
}
290290

291+
/**
292+
* @inheritDoc
293+
*/
291294
#[\ReturnTypeWillChange]
292295
public function getIterator()
293296
{

src/Stack.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,9 @@ public function toArray(): array
129129
return array_reverse($this->vector->toArray());
130130
}
131131

132+
/**
133+
*
134+
*/
132135
#[\ReturnTypeWillChange]
133136
public function getIterator()
134137
{

src/Traits/GenericSequence.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,9 @@ private function validIndex(int $index)
349349
return $index >= 0 && $index < count($this);
350350
}
351351

352+
/**
353+
*
354+
*/
352355
#[\ReturnTypeWillChange]
353356
public function getIterator()
354357
{

0 commit comments

Comments
 (0)