Add EmailLogListPage
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IGroupedUserListAction.class.php
index f130b7e354c8e1aba4f8be8357738c7a8fc65f50..acd61a8c3407f726af7c9586b03e94c94c2cefb4 100644 (file)
@@ -1,24 +1,26 @@
 <?php
+
 namespace wcf\data;
 
 /**
  * Default interface for action classes providing grouped user lists.
- * 
- * @author     Alexander Ebert
- * @copyright  2001-2018 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 IGroupedUserListAction {
-       /**
-        * Validates parameters to return a parsed list of users.
-        */
-       public function validateGetGroupedUserList();
-       
-       /**
-        * Returns a parsed list of users.
-        * 
-        * @return      array
-        */
-       public function getGroupedUserList();
+interface IGroupedUserListAction
+{
+    /**
+     * Validates parameters to return a parsed list of users.
+     */
+    public function validateGetGroupedUserList();
+
+    /**
+     * Returns a parsed list of users.
+     *
+     * @return  array
+     */
+    public function getGroupedUserList();
 }