Automattic\WooCommerce\Vendor\Sabberworm\CSS

OutputFormat::indentWithTabspublicWC 1.0

Method of the class: OutputFormat{}

No Hooks.

Returns

self.

Usage

$OutputFormat = new OutputFormat();
$OutputFormat->indentWithTabs( $iNumber );
$iNumber(int)
.
Default: 1

OutputFormat::indentWithTabs() code WC 10.5.0

public function indentWithTabs($iNumber = 1)
{
    return $this->setIndentation(str_repeat("\t", $iNumber));
}