Automattic\WooCommerce\Blocks\StoreApi\Formatters
DefaultFormatter{} WC 1.0
Default Formatter.
Хуков нет.
Возвращает
Null. Ничего.
Использование
$DefaultFormatter = new DefaultFormatter(); // use class methods
Методы
Код DefaultFormatter{} DefaultFormatter{} WC 5.0.0
class DefaultFormatter implements FormatterInterface {
/**
* Format a given value and return the result.
*
* @param mixed $value Value to format.
* @param array $options Options that influence the formatting.
* @return mixed
*/
public function format( $value, array $options = [] ) {
return $value;
}
}