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

setIndentStyle() public method

Set indentation style.
public setIndentStyle ( string $style ) : Indentation
$style string
return Indentation
    public function setIndentStyle($style)
    {
        $style = strtolower($style);
        switch ($style) {
            case 'space':
            case 'tab':
                $this->indentStyle = $style;
                break;
        }
        return $this;
    }