19 lines
289 B
PHP
19 lines
289 B
PHP
<?php
|
|
|
|
namespace AutomateWoo\Formatters;
|
|
|
|
trait Float_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 wc_format_localized_price( $value );
|
|
}
|
|
}
|