File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public function current()
2525 public function next ()
2626 {
2727 }
28- /** @return int */
28+ /** @return int|null */
2929 public function getIteratorIndex ()
3030 {
3131 }
Original file line number Diff line number Diff line change 33/** @generate-function-entries */
44class EmptyIterator implements \Iterator
55{
6- /** @return void */
6+ /** @return mixed */
77 public function current ()
88 {
99 }
1010 /** @return void */
1111 public function next ()
1212 {
1313 }
14- /** @return void */
14+ /** @return mixed */
1515 public function key ()
1616 {
1717 }
Original file line number Diff line number Diff line change 22
33interface OuterIterator extends \Iterator
44{
5- /** @return Iterator */
5+ /** @return Iterator|null */
66 public function getInnerIterator ();
77}
You can’t perform that action at this time.
0 commit comments