File "ActionScheduler_NullAction.php"
Full Path: /home/refref/public_html/actions/ActionScheduler_NullAction.php
File size: 348 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Class ActionScheduler_NullAction
*/
class ActionScheduler_NullAction extends ActionScheduler_Action {
public function __construct( $hook = '', array $args = array(), ActionScheduler_Schedule $schedule = NULL ) {
$this->set_schedule( new ActionScheduler_NullSchedule() );
}
public function execute() {
// don't execute
}
}