function PrettyPrinterAbstract::indent
Increase indentation level.
2 calls to PrettyPrinterAbstract::indent()
- PrettyPrinterAbstract::pCommaSeparatedMultiline in vendor/
nikic/ php-parser/ lib/ PhpParser/ PrettyPrinterAbstract.php - Pretty prints a comma-separated list of nodes in multiline style, including comments.
- PrettyPrinterAbstract::pStmts in vendor/
nikic/ php-parser/ lib/ PhpParser/ PrettyPrinterAbstract.php - Pretty prints an array of nodes (statements) and indents them optionally.
File
-
vendor/
nikic/ php-parser/ lib/ PhpParser/ PrettyPrinterAbstract.php, line 245
Class
Namespace
PhpParserCode
protected function indent() : void {
$this->indentLevel += $this->indentWidth;
$this->nl .= $this->indent;
}