ActionScheduler_NullLogEntry{}WC 1.0└─ ActionScheduler_LogEntry

Class ActionScheduler_NullLogEntry

Хуков нет.

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

$ActionScheduler_NullLogEntry = new ActionScheduler_NullLogEntry();
// use class methods

Методы

  1. public __construct( $action_id = '', $message = '' )

Код ActionScheduler_NullLogEntry{} WC 10.4.3

class ActionScheduler_NullLogEntry extends ActionScheduler_LogEntry {

	/**
	 * Construct.
	 *
	 * @param string $action_id Action ID.
	 * @param string $message   Log entry.
	 */
	public function __construct( $action_id = '', $message = '' ) {
		// nothing to see here.
	}

}