Automattic\WooCommerce\Vendor\Sabberworm\CSS
OutputFormat::nextLevel
Method of the class: OutputFormat{}
No Hooks.
Returns
OutputFormat.
Usage
$OutputFormat = new OutputFormat(); $OutputFormat->nextLevel();
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;
}