1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?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; }
|