contextStack[] = [ $this->elementMap, $this->contextUri, $this->namespaceMap, $this->classMap ]; } /** * Restore the previous "context". * * @return null */ function popContext() { list( $this->elementMap, $this->contextUri, $this->namespaceMap, $this->classMap ) = array_pop($this->contextStack); } }