Skip to content

Commit eefa782

Browse files
author
Clifford Vickrey
committed
remove superflous @inheritdoc annotations
1 parent ed5dfe9 commit eefa782

File tree

4 files changed

+0
-12
lines changed

4 files changed

+0
-12
lines changed

src/Map.php

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

734-
/**
735-
* @inheritDoc
736-
*/
737734
#[\ReturnTypeWillChange]
738735
public function getIterator()
739736
{

src/PriorityQueue.php

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

291-
/**
292-
* @inheritDoc
293-
*/
294291
#[\ReturnTypeWillChange]
295292
public function getIterator()
296293
{

src/Stack.php

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

132-
/**
133-
* @inheritDoc
134-
*/
135132
#[\ReturnTypeWillChange]
136133
public function getIterator()
137134
{

src/Traits/GenericSequence.php

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

352-
/**
353-
* @inheritDoc
354-
*/
355352
#[\ReturnTypeWillChange]
356353
public function getIterator()
357354
{

0 commit comments

Comments
 (0)