oont-contents/plugins/woocommerce/vendor/woocommerce/blueprint/tests/helpers.php
2025-02-08 15:10:23 +01:00

13 lines
140 B
PHP

<?php
/**
* Dump and die.
*
* @param mixed $x The variable to dump.
*
* @return void
*/
function dd( $x ) {
print_r( $x );
exit;
}