Lines Matching defs:indent
46 * @param int $indent The level of indentation (used internally)
49 public function dump($input, int $inline = 0, int $indent = 0, int $flags = 0): string
52 $prefix = $indent ? str_repeat(' ', $indent) : '';
62 $output .= $this->dumpTaggedValue($input, $inline, $indent, $flags, $prefix);
117 $output .= $this->dump($value->getValue(), $inline - 1, $dumpAsMap ? $indent + $this->indentation : $indent + 2, $flags);
135 $this->dump($value, $inline - 1, $willBeInlined ? 0 : $indent + $this->indentation, $flags)
143 private function dumpTaggedValue(TaggedValue $value, int $inline, int $indent, int $flags, string $prefix): string
164 return $output."\n".$this->dump($value->getValue(), $inline - 1, $indent, $flags);