Browse Source

Fixes XPathResult::offsetGet

master 1.0.2
Dustin Wilson 2 years ago
parent
commit
be5e1a8002
  1. 2
      lib/XPathResult.php

2
lib/XPathResult.php

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

Loading…
Cancel
Save