Apply PSR-12 code style (#3886)
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / stat / daily / StatDaily.class.php
index c3d7ab1448c0f07886311b44cc39b16eca8a468a..985e7628c06afb2f85bc4848e542f7fa51df5253 100644 (file)
@@ -1,19 +1,23 @@
 <?php
+
 namespace wcf\data\stat\daily;
+
 use wcf\data\DatabaseObject;
 
 /**
  * Represents a statistic entry.
- * 
- * @author     Marcel Werk
- * @copyright  2001-2019 WoltLab GmbH
- * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @package    WoltLabSuite\Core\Data\Stat\Daily
  *
- * @property-read      int             $statID         unique id of the daily statistic entry
- * @property-read      int             $objectTypeID   id of the `com.woltlab.wcf.statDailyHandler` object type
- * @property-read      string          $date           date when the daily statistic entry has been created
- * @property-read      int             $counter        daily statistic entry count for the last day
- * @property-read      int             $total          cumulative daily statistic entry count up to the date
+ * @author  Marcel Werk
+ * @copyright   2001-2019 WoltLab GmbH
+ * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @package WoltLabSuite\Core\Data\Stat\Daily
+ *
+ * @property-read   int $statID     unique id of the daily statistic entry
+ * @property-read   int $objectTypeID   id of the `com.woltlab.wcf.statDailyHandler` object type
+ * @property-read   string $date       date when the daily statistic entry has been created
+ * @property-read   int $counter    daily statistic entry count for the last day
+ * @property-read   int $total      cumulative daily statistic entry count up to the date
  */
-class StatDaily extends DatabaseObject {}
+class StatDaily extends DatabaseObject
+{
+}