Flitch\Rule\Whitespace\Indentation::setIndentCount PHP Method

setIndentCount() public method

Set indentation count.
public setIndentCount ( integer $count ) : Indentation
$count integer
return Indentation
    public function setIndentCount($count)
    {
        $this->indentCount = max(1, (int) $count);
        return $this;
    }