Add EmailLogListPage
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IPollContainer.class.php
index 62af1f7b5e419351939f644e701b59306cb96b3c..3fff2b103db061ec4e3f8dd8d228fdac882d5352 100644 (file)
@@ -1,20 +1,22 @@
 <?php
+
 namespace wcf\data;
 
 /**
  * Every database object that supports polls 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
- * @since      5.2
+ *
+ * @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
+ * @since   5.2
  */
-interface IPollContainer extends IIDObject, IPollObject {
-       /**
-        * Returns the id of the poll that belongs to this object or `null` if there is no such poll.
-        *
-        * @return      null|int
-        */
-       public function getPollID();
+interface IPollContainer extends IIDObject, IPollObject
+{
+    /**
+     * Returns the id of the poll that belongs to this object or `null` if there is no such poll.
+     *
+     * @return  null|int
+     */
+    public function getPollID();
 }