*/ class Mage_Install_Model_Installer_Data extends Varien_Object { /** * Errors array * * @var array */ protected $_errors = array(); /** * Add error * * @param string $error * @return Mage_Install_Model_Installer_Data */ public function addError($error) { $this->_errors[] = $error; return $this; } /** * Get all errors * * @return array */ public function getErrors() { return $this->_errors; } }