Browse Source

Prevent a warning from being printed in some situations in XPathResult

master
Dustin Wilson 2 years ago
parent
commit
8c9f931366
  1. 2
      lib/XPathResult.php

2
lib/XPathResult.php

@ -133,7 +133,7 @@ class XPathResult implements \ArrayAccess, \Countable, \Iterator {
public function offsetGet($offset): ?Node {
$this->validateStorage();
$node = $this->storage[$this->position];
$node = $this->storage[$offset];
return ($node !== null) ? $node->ownerDocument->getWrapperNode($node) : null;
}

Loading…
Cancel
Save