WP_CLI
11 months ago
abstracts
11 months ago
actions
1 year ago
data-stores
11 months ago
migration
1 year ago
schedules
1 year ago
schema
11 months ago
ActionScheduler_ActionClaim.php
1 year ago
ActionScheduler_ActionFactory.php
1 year ago
ActionScheduler_AdminView.php
1 year ago
ActionScheduler_AsyncRequest_QueueRunner.php
1 year ago
ActionScheduler_Compatibility.php
1 year ago
ActionScheduler_DataController.php
11 months ago
ActionScheduler_DateTime.php
1 year ago
ActionScheduler_Exception.php
3 years ago
ActionScheduler_FatalErrorMonitor.php
1 year ago
ActionScheduler_InvalidActionException.php
1 year ago
ActionScheduler_ListTable.php
1 year ago
ActionScheduler_LogEntry.php
1 year ago
ActionScheduler_NullLogEntry.php
1 year ago
ActionScheduler_OptionLock.php
1 year ago
ActionScheduler_QueueCleaner.php
1 year ago
ActionScheduler_QueueRunner.php
1 year ago
ActionScheduler_RecurringActionScheduler.php
11 months ago
ActionScheduler_SystemInformation.php
1 year ago
ActionScheduler_Versions.php
1 year ago
ActionScheduler_WPCommentCleaner.php
1 year ago
ActionScheduler_wcSystemStatus.php
11 months ago
ActionScheduler_NullLogEntry.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Class ActionScheduler_NullLogEntry |
| 5 | */ |
| 6 | class ActionScheduler_NullLogEntry extends ActionScheduler_LogEntry { |
| 7 | |
| 8 | /** |
| 9 | * Construct. |
| 10 | * |
| 11 | * @param string $action_id Action ID. |
| 12 | * @param string $message Log entry. |
| 13 | */ |
| 14 | public function __construct( $action_id = '', $message = '' ) { |
| 15 | // nothing to see here. |
| 16 | } |
| 17 | |
| 18 | } |
| 19 |