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

getBaseIndentation() private method

private getBaseIndentation ( )
    private function getBaseIndentation()
    {
        $char = '';
        if ($this->indentStyle === self::INDENT_STYLE_SPACE) {
            $char = ' ';
        } elseif ($this->indentStyle === self::INDENT_STYLE_TAB) {
            $char = "\t";
        }
        return str_repeat($char, $this->indentCount);
    }