20 lines
349 B
PHP
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();
|
|
}
|