Automattic\WooCommerce\Vendor\Sabberworm\CSS

OutputFormat::getFormatterpublicWC 1.0

Method of the class: OutputFormat{}

No Hooks.

Returns

OutputFormatter.

Usage

$OutputFormat = new OutputFormat();
$OutputFormat->getFormatter();

OutputFormat::getFormatter() code WC 10.5.0

public function getFormatter()
{
    if ($this->oFormatter === null) {
        $this->oFormatter = new OutputFormatter($this);
    }

    return $this->oFormatter;
}