From 26e502ba0950a3176d9fb43a96d7f2e8256c9f5c Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Sun, 10 Mar 2019 11:01:50 +0100 Subject: [PATCH] Fix location and namespace of object type form node interface/trait See #2509 --- .../{field => }/IObjectTypeFormNode.class.php | 2 +- .../{field => }/TObjectTypeFormNode.class.php | 2 +- .../wysiwyg/WysiwygPreviewFormButton.class.php | 4 ++-- .../wysiwyg/WysiwygFormContainer.class.php | 2 +- .../wysiwyg/WysiwygPollFormContainer.class.php | 4 ++-- .../builder/field/CaptchaFormField.class.php | 2 ++ .../builder/field/acl/AclFormField.class.php | 4 ++-- .../builder/field/tag/TagFormField.class.php | 4 ++-- .../field/wysiwyg/WysiwygFormField.class.php | 16 ++++++---------- 9 files changed, 19 insertions(+), 21 deletions(-) rename wcfsetup/install/files/lib/system/form/builder/{field => }/IObjectTypeFormNode.class.php (96%) rename wcfsetup/install/files/lib/system/form/builder/{field => }/TObjectTypeFormNode.class.php (98%) diff --git a/wcfsetup/install/files/lib/system/form/builder/field/IObjectTypeFormNode.class.php b/wcfsetup/install/files/lib/system/form/builder/IObjectTypeFormNode.class.php similarity index 96% rename from wcfsetup/install/files/lib/system/form/builder/field/IObjectTypeFormNode.class.php rename to wcfsetup/install/files/lib/system/form/builder/IObjectTypeFormNode.class.php index e43b7cdf9c..98420c585b 100644 --- a/wcfsetup/install/files/lib/system/form/builder/field/IObjectTypeFormNode.class.php +++ b/wcfsetup/install/files/lib/system/form/builder/IObjectTypeFormNode.class.php @@ -1,5 +1,5 @@ autosaveId = $autosaveId; @@ -113,8 +112,7 @@ class WysiwygFormField extends AbstractFormField implements IMaximumLengthFormFi * Sets the last time this field has been edited and returns this field. * * @param int $lastEditTime last time field has been edited - * - * @return WysiwygFormNode this field + * @return WysiwygFormField this field */ public function lastEditTime($lastEditTime) { $this->lastEditTime = $lastEditTime; @@ -158,8 +156,7 @@ class WysiwygFormField extends AbstractFormField implements IMaximumLengthFormFi * Sets if the form field supports attachments and returns this field. * * @param boolean $supportAttachments - * - * @return WysiwygFormNode + * @return WysiwygFormField this field */ public function supportAttachments($supportAttachments = true) { $this->supportAttachments = $supportAttachments; @@ -171,8 +168,7 @@ class WysiwygFormField extends AbstractFormField implements IMaximumLengthFormFi * Sets if the form field supports mentions and returns this field. * * @param boolean $supportMentions - * - * @return WysiwygFormNode + * @return WysiwygFormField this field */ public function supportMentions($supportMentions = true) { $this->supportMentions = $supportMentions; -- 2.20.1