PhpParser\PrettyPrinterAbstract::pNoIndent PHP Method

pNoIndent() protected method

Signals the pretty printer that a string shall not be indented.
protected pNoIndent ( string $string ) : string
$string string Not to be indented string
return string String marked with $this->noIndentToken's.
    protected function pNoIndent($string)
    {
        return str_replace("\n", "\n" . $this->noIndentToken, $string);
    }