Action_Scheduler\Migration

LogMigrator::__constructpublicWC 1.0

ActionMigrator constructor.

Method of the class: LogMigrator{}

No Hooks.

Returns

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 10.3.6

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