public function Dumper::setIndentation in Plug 7
Sets the indentation.
Parameters
int $num The amount of spaces to use for indentation of nested nodes.:
File
- lib/
Symfony/ yaml/ Symfony/ Component/ Yaml/ Dumper.php, line 33
Class
- Dumper
- Dumper dumps PHP variables to YAML strings.
Namespace
Symfony\Component\YamlCode
public function setIndentation($num) {
$this->indentation = (int) $num;
}