one-click-accessibility/tests/phpunit/helpers/functions.php
Raz Ohad ae23a192da
♻️ Initial Refactor commit [APP-687] (#109)
* Initial refactor commit

*  Added build and tests CI/CD

* PR Rejects

* Rejects leftover
2024-11-05 14:06:44 +02:00

8 lines
138 B
PHP

<?php
/**
* wp_ajax_print_handler
* @param $message
*/
function wp_ajax_print_handler( $message ): void {
echo esc_html( $message );
}