_name, NULL); } /** * @return null */ protected function _regenerate() { // Cookie sessions have no id return NULL; } /** * @return bool */ protected function _write() { return Cookie::set($this->_name, $this->__toString(), $this->_lifetime); } /** * @return bool */ protected function _restart() { return TRUE; } /** * @return bool */ protected function _destroy() { return Cookie::delete($this->_name); } } // End Session_Cookie