Files
woocommerce-subscriptions/includes/libraries/action-scheduler/classes/ActionScheduler_LogEntry.php
Prospress Inc 4733fa00c6 2.0.17
2016-07-08 15:02:27 +02:00

23 lines
388 B
PHP

<?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;
}
}