File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/StartOnHookInterface.php.tar
httpdocs/wp-content/plugins/google-listings-and-ads/src/Jobs/StartOnHookInterface.php 0000644 00000001036 15154674110 0033263 0 ustar 00 var/www/vhosts/uyarreklam.com.tr <?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;
}