diff --git a/src/Parser/NodeList.php b/src/Parser/NodeList.php deleted file mode 100644 index 13e69eef13..0000000000 --- a/src/Parser/NodeList.php +++ /dev/null @@ -1,37 +0,0 @@ -next !== null) { - $current = $current->next; - } - - $new = new self($node); - $current->next = $new; - - return $new; - } - - public function getNode(): Node - { - return $this->node; - } - - public function getNext(): ?self - { - return $this->next; - } - -}