Automattic\WooCommerce\Vendor\Sabberworm\CSS

OutputFormat::nextLevelpublicWC 1.0

Method of the class: OutputFormat{}

No Hooks.

Returns

OutputFormat.

Usage

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

OutputFormat::nextLevel() code WC 10.8.1

public function nextLevel()
{
    if ($this->oNextLevelFormat === null) {
        $this->oNextLevelFormat = clone $this;
        $this->oNextLevelFormat->iIndentationLevel++;
        $this->oNextLevelFormat->oFormatter = null;
    }
    return $this->oNextLevelFormat;
}