# notifier/2.7.13/libraries/action-scheduler/classes/actions/ActionScheduler_NullAction.php

WANotifier for Forms and Actions, version 2.7.13. 16 lines.

- Page: https://pluginprobe.com/plugins/notifier/2.7.13/code/libraries/action-scheduler/classes/actions/ActionScheduler_NullAction.php
- Raw: https://pluginprobe.com/plugins/notifier/2.7.13/raw/libraries/action-scheduler/classes/actions/ActionScheduler_NullAction.php
- Modified: 2026-02-06T12:53:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/notifier/2.7.13/code/libraries/action-scheduler/classes/actions/ActionScheduler_NullAction.php#L10-L20`.

```php
<?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
	}
}
 
```
