Changeset 2120 for sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-custom-stats/wporg-gp-custom-stats.php
- Timestamp:
- 11/23/2015 09:28:30 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-custom-stats/wporg-gp-custom-stats.php
r2114 r2120 10 10 class WPorg_GP_Custom_Stats { 11 11 12 /** 13 * Holds the user stats instance. 14 * 15 * @var WPorg_GP_User_Stats 16 */ 12 17 public $user; 18 19 /** 20 * Holds the project stats instance. 21 * 22 * @var WPorg_GP_Project_Stats 23 */ 13 24 public $project; 25 26 /** 27 * Holds the discarded warning stats instance. 28 * 29 * @var WPorg_GP_Discarded_Warning_Stats 30 */ 31 public $discarded_warning; 14 32 15 33 public function __construct() { … … 17 35 } 18 36 37 /** 38 * Initializes custom stats classes. 39 */ 19 40 public function init_stats() { 20 21 41 $this->user = new WPorg_GP_User_Stats(); 22 42 $this->project = new WPorg_GP_Project_Stats(); 43 $this->discarded_warning = new WPorg_GP_Discarded_Warning_Stats(); 23 44 } 24 45 }
Note: See TracChangeset
for help on using the changeset viewer.