Action_Scheduler\Migration

LogMigrator::__construct()publicWC 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 8.7.0

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