Automattic\WooCommerce\StoreApi\Formatters

DefaultFormatter{}WC 1.0

Default Formatter.

Хуков нет.

Использование

$DefaultFormatter = new DefaultFormatter();
// use class methods

Методы

  1. public format( $value, array $options = [] )

Код DefaultFormatter{} WC 8.7.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;
	}
}