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

22 lines
405 B
PHP

<?php
namespace AutomateWoo\Jobs;
defined( 'ABSPATH' ) || exit;
/**
* Interface StartOnHookInterface.
*
* Jobs that implement this interface will start on a specific action hook.
*
* @since 5.1.0
*/
interface StartOnHookInterface extends JobInterface {
/**
* Get the name of an action hook to attach the job's start method to.
*
* @return string
*/
public function get_start_hook();
}