Add EmailLogListPage
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IPopoverObject.class.php
index b3404a8e9c9e1c5f5c4db83628fd96542d466df0..53858cb3d8bfc5827c84078cff4699bf052ebd21 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 namespace wcf\data;
 
 /**
@@ -6,18 +7,19 @@ namespace wcf\data;
  * can implement this interface so that when the `anchor` template plugin is used and the CSS class name
  * returned by `getPopoverLinkClass()` is given, the `data-object-id` attribute is automatically added
  * to support the preview popover.
- * 
- * @author     Matthias Schmidt
- * @copyright  2001-2020 WoltLab GmbH
- * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @package    WoltLabSuite\Core\Data
- * @since      5.3
+ *
+ * @author  Matthias Schmidt
+ * @copyright   2001-2020 WoltLab GmbH
+ * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @package WoltLabSuite\Core\Data
+ * @since   5.3
  */
-interface IPopoverObject extends IIDObject, ITitledLinkObject {
-       /**
-        * Returns the CSS class that objects of this type use for popover links.
-        * 
-        * @return      string
-        */
-       public function getPopoverLinkClass();
+interface IPopoverObject extends IIDObject, ITitledLinkObject
+{
+    /**
+     * Returns the CSS class that objects of this type use for popover links.
+     *
+     * @return  string
+     */
+    public function getPopoverLinkClass();
 }