<?php class Foo { /** @var array<string> */ private array $array = []; /** @return array<string> */ public function &getList(): array { return $this->array; } public function rewind(): void { reset($this->getList()); } } $f = new Foo; $f->rewind();
You have javascript disabled. You will not be able to edit any code.