Add EmailLogListPage
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IVisitableObjectAction.class.php
index f21db9a8cf2aff9f70775a915037e45179fea9fb..3affa853b20f0fc31613023fefba3d2bcab534c1 100644 (file)
@@ -1,22 +1,24 @@
 <?php
+
 namespace wcf\data;
 
 /**
  * Default interface for objects supporting visit tracking.
- * 
- * @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 IVisitableObjectAction {
-       /**
-        * Marks objects as read.
-        */
-       public function markAsRead();
-       
-       /**
-        * Validates parameters to mark objects as read.
-        */
-       public function validateMarkAsRead();
+interface IVisitableObjectAction
+{
+    /**
+     * Marks objects as read.
+     */
+    public function markAsRead();
+
+    /**
+     * Validates parameters to mark objects as read.
+     */
+    public function validateMarkAsRead();
 }