Lines Matching refs:indent
110 private string $indent; variable in PhpParser\\PrettyPrinterAbstract
205 $this->indent = $indent = $options['indent'] ?? ' ';
206 if ($indent === "\t") {
209 } elseif ($indent === \str_repeat(' ', \strlen($indent))) {
211 $this->indentWidth = \strlen($indent);
245 protected function indent(): void { function in PhpParser\\PrettyPrinterAbstract
247 $this->nl .= $this->indent;
344 * @param bool $indent Whether to indent the printed nodes
348 protected function pStmts(array $nodes, bool $indent = true): string { argument
349 if ($indent) {
350 $this->indent();
366 if ($indent) {
500 $this->indent();