git-subtree-dir: libraries/action-scheduler git-subtree-split: a95f351058eada5e5281faa22e5a40865542e839
19 lines
330 B
PHP
19 lines
330 B
PHP
<?php
|
|
|
|
/**
|
|
* Class ActionScheduler_NullLogEntry
|
|
*/
|
|
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.
|
|
}
|
|
|
|
}
|