Changeset 11723 for sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-slack-integrations/wporg-gp-slack-integrations.php
- Timestamp:
- 03/30/2022 08:04:35 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-slack-integrations/wporg-gp-slack-integrations.php
r2275 r11723 10 10 11 11 require_once __DIR__ . '/integrations/log-warnings.php'; 12 require_once __DIR__ . '/integrations/log-imported-originals.php'; 12 13 13 14 class WPorg_GP_Slack_Integrations { … … 20 21 public $log_warnings; 21 22 23 /** 24 * Holds the logger for imported originals instance. 25 * 26 * @var WPorg_GP_Slack_Log_Imported_Originals 27 */ 28 public $log_imported_originals; 29 22 30 public function __construct() { 23 31 add_action( 'gp_init', array( $this, 'init_integrations' ) ); … … 28 36 */ 29 37 public function init_integrations() { 30 $this->log_warnings = new WPorg_GP_Slack_Log_Warnings(); 38 $this->log_warnings = new WPorg_GP_Slack_Log_Warnings(); 39 $this->log_imported_originals = new WPorg_GP_Slack_Log_Imported_Originals(); 31 40 } 32 41 }
Note: See TracChangeset
for help on using the changeset viewer.