Changeset 9890
- Timestamp:
- 05/19/2020 09:11:19 PM (4 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-custom-stats
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-custom-stats/wporg-gp-custom-stats.php
r2275 r9890 11 11 require_once __DIR__ . '/stats/user.php'; 12 12 require_once __DIR__ . '/stats/project.php'; 13 require_once __DIR__ . '/stats/warning.php'; 13 14 require_once __DIR__ . '/stats/discarded-warning.php'; 14 15 … … 30 31 31 32 /** 33 * Holds the warning stats instance. 34 * 35 * @var WPorg_GP_Warning_Stats 36 */ 37 public $warnings; 38 39 /** 32 40 * Holds the discarded warning stats instance. 33 41 * … … 46 54 $this->user = new WPorg_GP_User_Stats(); 47 55 $this->project = new WPorg_GP_Project_Stats(); 56 $this->warnings = new WPorg_GP_Warning_Stats(); 48 57 $this->discarded_warning = new WPorg_GP_Discarded_Warning_Stats(); 49 58 }
Note: See TracChangeset
for help on using the changeset viewer.