Add EmailLogListPage
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IPollObject.class.php
index 968ee7d27865d35606f865cbbb66072de8d826a6..077ce62b2c31e28c5610002ef2105f269f8eaa79 100644 (file)
@@ -1,19 +1,21 @@
 <?php
+
 namespace wcf\data;
 
 /**
  * Default interface for DatabaseObjects with poll support.
- * 
- * @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 IPollObject {
-       /**
-        * Returns true if user can vote in polls.
-        * 
-        * @return      boolean
-        */
-       public function canVote();
+interface IPollObject
+{
+    /**
+     * Returns true if user can vote in polls.
+     *
+     * @return  bool
+     */
+    public function canVote();
 }