Action_Scheduler\Migration

LogMigrator::__construct()publicWC 1.0

ActionMigrator constructor.

Method of the class: LogMigrator{}

No Hooks.

Return

null. Nothing (null).

Usage

$LogMigrator = new LogMigrator();
$LogMigrator->__construct( $source_logger, $destination_Logger );
$source_logger(ActionScheduler_Logger) (required)
Source logger object.
$destination_Logger(ActionScheduler_Logger) (required)
Destination logger object.

LogMigrator::__construct() code WC 8.7.0

public function __construct( ActionScheduler_Logger $source_logger, ActionScheduler_Logger $destination_Logger ) {
	$this->source      = $source_logger;
	$this->destination = $destination_Logger;
}