From 0b2f3ed55e24620e9a327a80caeaa47e784c5b39 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 26 Jun 2019 15:30:06 +0200 Subject: [PATCH] remove debug Get Path --- src/Elements/HtmlElementNode.php | 1 - src/Fhtml/FHtml.php | 5 ----- 2 files changed, 6 deletions(-) diff --git a/src/Elements/HtmlElementNode.php b/src/Elements/HtmlElementNode.php index 8b5c91a..35b3938 100644 --- a/src/Elements/HtmlElementNode.php +++ b/src/Elements/HtmlElementNode.php @@ -18,6 +18,5 @@ public function _setParent(HtmlContainerElement $parent); public function getParent() : HtmlContainerElement; - public function debugGetPath(); } \ No newline at end of file diff --git a/src/Fhtml/FHtml.php b/src/Fhtml/FHtml.php index cbacf9d..f773329 100644 --- a/src/Fhtml/FHtml.php +++ b/src/Fhtml/FHtml.php @@ -391,9 +391,4 @@ public function offsetUnset($offset) throw new \InvalidArgumentException("Not implemented yet"); } - - public function debugGetPath() - { - return $this->getNode()->debugGetPath(); - } }