1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?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(); }
|