Flitch\Rule\Whitespace\Indentation::setIndentCount PHP Метод

setIndentCount() публичный Метод

Set indentation count.
public setIndentCount ( integer $count ) : Indentation
$count integer
Результат Indentation
    public function setIndentCount($count)
    {
        $this->indentCount = max(1, (int) $count);
        return $this;
    }