|
1
|
<?php |
|
2
|
|
|
3
|
namespace WCML\Utilities; |
|
4
|
|
|
5
|
class ActionScheduler { |
|
6
|
|
|
7
|
public static function isWcRunningFromAsyncActionScheduler(): bool { |
|
8
|
return function_exists( 'wc_is_running_from_async_action_scheduler' ) && wc_is_running_from_async_action_scheduler(); |
|
9
|
} |
|
10
|
} |
|
11
|
|