File "ActionScheduler_Abstract_QueueRunner_Deprecated.php"

Full path: /home/kosmetik/public_html/wp-content/plugins/woocommerce/packages/action-scheduler/deprecated/ActionScheduler_Abstract_QueueRunner_Deprecated.php
File size: 662 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

abstract class ActionScheduler_Abstract_QueueRunner_Deprecated
{
    protected function get_maximum_execution_time()
    {
        _deprecated_function(__METHOD__, '2.1.1', 'ActionScheduler_Abstract_QueueRunner::get_time_limit()');
        $maximum_execution_time = 30;
        if (has_filter('action_scheduler_maximum_execution_time')) {
            _deprecated_function('action_scheduler_maximum_execution_time', '2.1.1', 'action_scheduler_queue_runner_time_limit');
            $maximum_execution_time = apply_filters('action_scheduler_maximum_execution_time', $maximum_execution_time);
        }
        return absint($maximum_execution_time);
    }
}