This commit is contained in:
Prospress Inc
2016-07-08 15:02:27 +02:00
committed by I
parent 183dce9069
commit 4733fa00c6
208 changed files with 57323 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?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;
}
}