From e7c2538506e2c5143f7122e503e7df56acafb9a6 Mon Sep 17 00:00:00 2001 From: Doug Wilbourne Date: Tue, 3 Sep 2024 12:56:55 -0400 Subject: [PATCH] removed htmlconfig interface and added makeEvent method to AttributeFactoryInterface.php --- .../attribute/AttributeFactoryInterface.php | 7 +++ src/html/config/HtmlConfigInterface.php | 58 ------------------- 2 files changed, 7 insertions(+), 58 deletions(-) delete mode 100644 src/html/config/HtmlConfigInterface.php diff --git a/src/html/attribute/AttributeFactoryInterface.php b/src/html/attribute/AttributeFactoryInterface.php index f2818d7..d8a00eb 100644 --- a/src/html/attribute/AttributeFactoryInterface.php +++ b/src/html/attribute/AttributeFactoryInterface.php @@ -34,4 +34,11 @@ public function makeCustomData( string $name, ValTesterInterface $valueTester = null ): AttributeInterface; + + /** + * makeEvent + * @param string $eventName + * @return AttributeInterface + */ + public function makeEvent(string $eventName): AttributeInterface; } diff --git a/src/html/config/HtmlConfigInterface.php b/src/html/config/HtmlConfigInterface.php deleted file mode 100644 index 3aa30eb..0000000 --- a/src/html/config/HtmlConfigInterface.php +++ /dev/null @@ -1,58 +0,0 @@ -