Action_Scheduler\Migration

LogMigrator::__constructpublicWC 1.0

ActionMigrator constructor.

Метод класса: LogMigrator{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$LogMigrator = new LogMigrator();
$LogMigrator->__construct( $source_logger, $destination_logger );
$source_logger(ActionScheduler_Logger) (обязательный)
Source logger object.
$destination_logger(ActionScheduler_Logger) (обязательный)
Destination logger object.

Код LogMigrator::__construct() WC 10.6.2

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