Falcon_Converter::indent PHP Method

indent() protected method

Indent a section of text
protected indent ( string $text ) : string
$text string Text to indent
return string Indented text
    protected function indent($text)
    {
        return "\t" . str_replace("\n", "\n\t", $text);
    }