_isSourceDirty = ($isSourceDirty) ? true : false; return $this; } /** * isSourceDirty() * * @return bool */ public function isSourceDirty() { return $this->_isSourceDirty; } /** * setIndentation() * * @param string|int $indentation * @return Zend_CodeGenerator_Php_Abstract */ public function setIndentation($indentation) { $this->_indentation = $indentation; return $this; } /** * getIndentation() * * @return string|int */ public function getIndentation() { return $this->_indentation; } }