HippoPHP\Hippo\Checks\Whitespace\IndentationCheck::setIndentCount PHP Method

setIndentCount() public method

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