🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 11:24:52 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
google-listings-and-ads
/
src
/
Jobs
📍 /home/therahul/thedasstores.com/wp-content/plugins/google-listings-and-ads/src/Jobs
🔄 Refresh
✏️
Editing: ActionSchedulerJobInterface.php
Writable
<?php declare( strict_types=1 ); namespace Automattic\WooCommerce\GoogleListingsAndAds\Jobs; defined( 'ABSPATH' ) || exit; /** * Interface ActionSchedulerJobInterface * * @package Automattic\WooCommerce\GoogleListingsAndAds\Jobs */ 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(): string; /** * Can the job be scheduled. * * @param array|null $args * * @return bool Returns true if the job can be scheduled. */ public function can_schedule( $args = [] ): bool; /** * Schedule the job. * * @param array $args */ public function schedule( array $args = [] ); }
💾 Save Changes
❌ Cancel