ActionScheduler_WPCLI_Clean_Command::print_error
Convert an exception into a WP CLI error.
Метод класса: ActionScheduler_WPCLI_Clean_Command{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->print_error( $e );
- $e(Exception) (обязательный)
- The error object.
Код ActionScheduler_WPCLI_Clean_Command::print_error() ActionScheduler WPCLI Clean Command::print error WC 9.9.5
protected function print_error( Exception $e ) { WP_CLI::error( sprintf( /* translators: %s refers to the exception error message */ __( 'There was an error deleting an action: %s', 'woocommerce' ), $e->getMessage() ) ); }