Writes a string to the compiled code by adding indentation.
Twig_Compiler The current compiler instance
public function write() {
$strings = func_get_args();
foreach ($strings as $string) {
$this
->addIndentation();
$this->source .= $string;
}
return $this;
}