Apply PSR-12 code style (#3886)
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IMessageInlineEditorAction.class.php
index 7a601dd839df7ca2768305b7fa89509f715f96c5..71e18fe21323a965ea89331527f56586843cbba3 100644 (file)
@@ -1,36 +1,38 @@
 <?php
+
 namespace wcf\data;
 
 /**
  * Default interface for actions implementing message inline editing.
- * 
- * @author     Alexander Ebert
- * @copyright  2001-2019 WoltLab GmbH
- * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @package    WoltLabSuite\Core\Data
+ *
+ * @author  Alexander Ebert
+ * @copyright   2001-2019 WoltLab GmbH
+ * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @package WoltLabSuite\Core\Data
  */
-interface IMessageInlineEditorAction {
-       /**
-        * Provides WYSIWYG editor for message inline editing.
-        * 
-        * @return      array
-        */
-       public function beginEdit();
-       
-       /**
-        * Saves changes made to a message.
-        * 
-        * @return      array
-        */
-       public function save();
-       
-       /**
-        * Validates parameters to begin message inline editing.
-        */
-       public function validateBeginEdit();
-       
-       /**
-        * Validates parameters to save changes made to a message.
-        */
-       public function validateSave();
+interface IMessageInlineEditorAction
+{
+    /**
+     * Provides WYSIWYG editor for message inline editing.
+     *
+     * @return  array
+     */
+    public function beginEdit();
+
+    /**
+     * Saves changes made to a message.
+     *
+     * @return  array
+     */
+    public function save();
+
+    /**
+     * Validates parameters to begin message inline editing.
+     */
+    public function validateBeginEdit();
+
+    /**
+     * Validates parameters to save changes made to a message.
+     */
+    public function validateSave();
 }