1 | <?php |
||
25 | abstract class MapIterator implements \Iterator |
||
26 | { |
||
27 | /** |
||
28 | * Returns the current pair in the Map |
||
29 | * |
||
30 | * @return Pair<KeyType, ValueType> |
||
|
|||
31 | */ |
||
32 | abstract protected function getCurrent() : Pair; |
||
33 | |||
34 | /** |
||
35 | * {@inheritDoc} |
||
36 | */ |
||
37 | public function current() |
||
41 | |||
42 | /** |
||
43 | * {@inheritDoc} |
||
44 | */ |
||
45 | public function key() |
||
49 | } |
||
50 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.