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

23 lines
454 B
PHP

<?php
namespace AutomateWoo\Triggers;
use AutomateWoo\Trigger;
use AutomateWoo\Triggers\Utilities\CustomTimeOfDay;
defined( 'ABSPATH' ) || exit;
/**
* Class AbstractBatchedDailyTrigger
*
* @since 5.1.0
*/
abstract class AbstractBatchedDailyTrigger extends Trigger implements BatchedWorkflowInterface {
use CustomTimeOfDay;
/**
* Set that the trigger supports customer time of day functions
*/
const SUPPORTS_CUSTOM_TIME_OF_DAY = true;
}