mirror of
https://github.com/pronamic/woocommerce-subscriptions.git
synced 2025-10-14 13:22:55 +00:00
23 lines
388 B
PHP
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;
|
|
}
|
|
}
|
|
|