From 43da8a75a7862f499118407aa89b3965cd274cc3 Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Thu, 3 Jan 2019 17:59:51 +0100 Subject: [PATCH] =?utf8?q?Move=20form=20builder=E2=80=99s=20data=20handler?= =?utf8?q?s=20into=20separate=20namespace?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit See #2509 --- .../files/lib/system/form/builder/FormDocument.class.php | 2 ++ .../files/lib/system/form/builder/IFormDocument.class.php | 1 + .../system/form/builder/{ => data}/FormDataHandler.class.php | 5 +++-- .../form/builder/{ => data}/IFormDataHandler.class.php | 5 +++-- 4 files changed, 9 insertions(+), 4 deletions(-) rename wcfsetup/install/files/lib/system/form/builder/{ => data}/FormDataHandler.class.php (87%) rename wcfsetup/install/files/lib/system/form/builder/{ => data}/IFormDataHandler.class.php (88%) diff --git a/wcfsetup/install/files/lib/system/form/builder/FormDocument.class.php b/wcfsetup/install/files/lib/system/form/builder/FormDocument.class.php index 5467a4e16a..04646f84d7 100644 --- a/wcfsetup/install/files/lib/system/form/builder/FormDocument.class.php +++ b/wcfsetup/install/files/lib/system/form/builder/FormDocument.class.php @@ -1,6 +1,8 @@ - * @package WoltLabSuite\Core\System\Form\Builder\Field\Data + * @package WoltLabSuite\Core\System\Form\Builder\Data * @since 3.2 */ class FormDataHandler implements IFormDataHandler { diff --git a/wcfsetup/install/files/lib/system/form/builder/IFormDataHandler.class.php b/wcfsetup/install/files/lib/system/form/builder/data/IFormDataHandler.class.php similarity index 88% rename from wcfsetup/install/files/lib/system/form/builder/IFormDataHandler.class.php rename to wcfsetup/install/files/lib/system/form/builder/data/IFormDataHandler.class.php index d78280473d..6e98b5023e 100644 --- a/wcfsetup/install/files/lib/system/form/builder/IFormDataHandler.class.php +++ b/wcfsetup/install/files/lib/system/form/builder/data/IFormDataHandler.class.php @@ -1,6 +1,7 @@ - * @package WoltLabSuite\Core\System\Form\Builder + * @package WoltLabSuite\Core\System\Form\Builder\Data * @since 3.2 */ interface IFormDataHandler { -- 2.20.1