_silent = $silent; } public function startProduction($name) { $this->println('(' . $name); $this->_indent++; } public function endProduction() { $this->_indent--; $this->println(')'); } public function println($str) { if ( ! $this->_silent) { echo str_repeat(' ', $this->_indent), $str, "\n"; } } }