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

24 lines
294 B
PHP

<?php
namespace AutomateWoo\Jobs;
/**
* Interface JobInterface.
*
* @since 5.0.0
* @package AutomateWoo\Jobs
*/
interface JobInterface {
/**
* Get the name of the job.
*
* @return string
*/
public function get_name();
/**
* Init the job.
*/
public function init();
}