Automattic\WooCommerce\Vendor\Sabberworm\CSS

OutputFormat::indentWithSpacespublicWC 1.0

Метод класса: OutputFormat{}

Хуков нет.

Возвращает

self.

Использование

$OutputFormat = new OutputFormat();
$OutputFormat->indentWithSpaces( $iNumber );
$iNumber(int)
.
По умолчанию: 2

Код OutputFormat::indentWithSpaces() WC 10.5.0

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