This check looks for calls to methods that do not seem to exist on a given type.
It looks for the method on the type itself as well as in inherited classes or
implemented interfaces.
This is most likely a typographical error or the method has been renamed.
Loading history...
49
}
50
51
/**
52
* Move forward to next element
53
*
54
* @return void
55
*/
56
11
public function next(): void
57
{
58
11
if (!isset($this->entries)) {
59
// Shouldn't happen if `prepareNext()` works correctly
60
return; // @codeCoverageIgnore
61
}
62
63
11
$this->entries->next();
64
65
11
while (!$this->entries->valid() && $this->items->valid()) {
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.