Lines Matching refs:indentation
30 protected $indentation; variable in Symfony\\Component\\Yaml\\Dumper
32 public function __construct(int $indentation = 4) argument
34 if ($indentation < 1) {
38 $this->indentation = $indentation;
74 … $blockIndentationIndicator = (' ' === substr($value, 0, 1)) ? (string) $this->indentation : '';
90 … $output .= sprintf("\n%s%s%s", $prefix, str_repeat(' ', $this->indentation), $row);
103 …dentationIndicator = (' ' === substr($value->getValue(), 0, 1)) ? (string) $this->indentation : '';
107 … $output .= sprintf("\n%s%s%s", $prefix, str_repeat(' ', $this->indentation), $row);
117 …s->dump($value->getValue(), $inline - 1, $dumpAsMap ? $indent + $this->indentation : $indent + 2, …
135 … $this->dump($value, $inline - 1, $willBeInlined ? 0 : $indent + $this->indentation, $flags)
150 …dentationIndicator = (' ' === substr($value->getValue(), 0, 1)) ? (string) $this->indentation : '';
154 $output .= sprintf("\n%s%s%s", $prefix, str_repeat(' ', $this->indentation), $row);