Automattic\WooCommerce\Vendor\Sabberworm\CSS

OutputFormat::indentWithSpacespublicWC 1.0

Method of the class: OutputFormat{}

No Hooks.

Returns

self.

Usage

$OutputFormat = new OutputFormat();
$OutputFormat->indentWithSpaces( $iNumber );
$iNumber(int)
.
Default: 2

OutputFormat::indentWithSpaces() code WC 10.4.3

public function indentWithSpaces($iNumber = 2)
{
    return $this->setIndentation(str_repeat(" ", $iNumber));
}