automatewoo/includes/Formatters/Int_String_Formatter.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

19 lines
281 B
PHP

<?php
namespace AutomateWoo\Formatters;
trait Int_String_Formatter {
/**
* Format a value for display in the UI.
*
* @since 4.8.0
*
* @param string|int $value
*
* @return string
*/
public function format_value( $value ) {
return strval( (int) $value );
}
}