_store); } /** * Set value * * @param string $key * @param mixed $obj * @access public */ public function set($key, $obj) { $this->_store[$key] = $obj; } /** * Get value * * @param string $key * @return mixed * @access public */ public function get($key) { if ($this->isValid($key)) { return $this->_store[$key]; } } }