
<center><h2><strong>Ubuntu</strong></h2>
­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
declare( strict_types=1 );

namespace Automattic\WooCommerce\GoogleListingsAndAds\Jobs;

defined( 'ABSPATH' ) || exit;

/**
 * Interface StartOnHookInterface
 *
 * Action Scheduler jobs that implement this interface will start on a specific action hook.
 *
 * @package Automattic\WooCommerce\GoogleListingsAndAds\Jobs
 */
interface StartOnHookInterface extends ActionSchedulerJobInterface {

	/**
	 * Get an action hook to attach the job's start method to.
	 *
	 * @return StartHook
	 */
	public function get_start_hook(): StartHook;
}
