You appear to be a bot. Output may be restricted
Description
Print WP CLI message about how many actions are about to be processed.
Usage
ActionScheduler_WPCLI_Scheduler_command::print_total_actions( $total );
Parameters
- $total
- ( int ) required –
Returns
void
Source
File name: woocommerce/packages/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_Scheduler_command.php
Lines:
1 to 9 of 9
protected function print_total_actions( $total ) { WP_CLI::log( sprintf( /* translators: %d refers to how many scheduled taks were found to run */ _n( 'Found %d scheduled task', 'Found %d scheduled tasks', $total, 'woocommerce' ), number_format_i18n( $total ) ) ); }