Files
woocommerce-subscriptions/includes/libraries/action-scheduler/classes/ActionScheduler_LogEntry.php
Prospress Inc 0ff6d53f17 2.2.21
2018-06-01 08:52:43 +02:00

23 lines
388 B
PHP
Executable File

<?php
/**
* Class ActionScheduler_LogEntry
*/
class ActionScheduler_LogEntry {
protected $action_id = '';
protected $message = '';
public function __construct( $action_id, $message ) {
$this->action_id = $action_id;
$this->message = $message;
}
public function get_action_id() {
return $this->action_id;
}
public function get_message() {
return $this->message;
}
}