File "ActionScheduler_NullAction.php"

Full path: /home/kosmetik/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/classes/actions/ActionScheduler_NullAction.php
File size: 303 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

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()
    {
    }
}