public function Twig_Compiler::indent

Indents the generated code.

Parameters

integer $step The number of indentation to add:

Return value

Twig_Compiler The current compiler instance

File

drupal/core/vendor/twig/twig/lib/Twig/Compiler.php, line 242

Class

Twig_Compiler
Compiles a node to PHP code.

Code

public function indent($step = 1) {
  $this->indentation += $step;
  return $this;
}