Returns the previous sibling nodes of the current selection.
\InvalidArgumentException
public function previousAll() : static { if (!$this->nodes) { throw new \InvalidArgumentException('The current node list is empty.'); } return $this->createSubCrawler($this->sibling($this->getNode(0), 'previousSibling')); }