ActionScheduler_WPCLI_QueueRunner::__construct()
ActionScheduler_WPCLI_QueueRunner constructor.
Method of the class: ActionScheduler_WPCLI_QueueRunner{}
No Hooks.
Return
null
. Nothing (null).
Usage
$ActionScheduler_WPCLI_QueueRunner = new ActionScheduler_WPCLI_QueueRunner(); $ActionScheduler_WPCLI_QueueRunner->__construct( $store, $monitor, $cleaner );
- $store(ActionScheduler_Store)
- Store object.
Default: null - $monitor(ActionScheduler_FatalErrorMonitor)
- Monitor object.
Default: null - $cleaner(ActionScheduler_QueueCleaner)
- Cleaner object.
Default: null
ActionScheduler_WPCLI_QueueRunner::__construct() ActionScheduler WPCLI QueueRunner:: construct code WC 9.5.1
public function __construct( ActionScheduler_Store $store = null, ActionScheduler_FatalErrorMonitor $monitor = null, ActionScheduler_QueueCleaner $cleaner = null ) { if ( ! ( defined( 'WP_CLI' ) && WP_CLI ) ) { /* translators: %s php class name */ throw new Exception( sprintf( __( 'The %s class can only be run within WP CLI.', 'woocommerce' ), __CLASS__ ) ); } parent::__construct( $store, $monitor, $cleaner ); }