Writes a string to the compiled code by adding indentation.
$this
public function write(...$strings) { foreach ($strings as $string) { $this->checkForEcho($string); $this->source .= str_repeat(' ', $this->indentation * 4) . $string; } return $this; }