Add EmailLogListPage
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IToggleAction.class.php
index 0cd4a7d2a263cd805466c6fbb87ede0157666e2a..199adb02352c31404f47fa46561c2345237da917 100644 (file)
@@ -1,23 +1,25 @@
 <?php
+
 namespace wcf\data;
 
 /**
  * Every database object action whose objects can be toggled has to implement this
  * interface.
- * 
- * @author     Matthias Schmidt
- * @copyright  2001-2019 WoltLab GmbH
- * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @package    WoltLabSuite\Core\Data
+ *
+ * @author  Matthias Schmidt
+ * @copyright   2001-2019 WoltLab GmbH
+ * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @package WoltLabSuite\Core\Data
  */
-interface IToggleAction {
-       /**
-        * Toggles the "isDisabled" status of the relevant objects.
-        */
-       public function toggle();
-       
-       /**
-        * Validates the "toggle" action.
-        */
-       public function validateToggle();
+interface IToggleAction
+{
+    /**
+     * Toggles the "isDisabled" status of the relevant objects.
+     */
+    public function toggle();
+
+    /**
+     * Validates the "toggle" action.
+     */
+    public function validateToggle();
 }