Flitch\Rule\Whitespace\Indentation::setIndentStyle PHP Méthode

setIndentStyle() public méthode

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