automatewoo/includes/Jobs/ActionSchedulerJobInterface.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

20 lines
349 B
PHP

<?php
namespace AutomateWoo\Jobs;
/**
* Interface ActionSchedulerJobInterface.
*
* @since 5.2.0
*/
interface ActionSchedulerJobInterface extends JobInterface {
/**
* Get the hook name for the "process item" action.
*
* This method is required by the job monitor.
*
* @return string
*/
public function get_process_item_hook();
}