Mage_Core_Model_Resource_Session::close PHP Method

close() public method

Close session
public close ( ) : boolean
return boolean
    public function close()
    {
        $this->gc($this->getLifeTime());
        return true;
    }

Usage Example

Exemplo n.º 1
0
 public function testOpenAndClose()
 {
     $this->assertTrue($this->_model->open('', 'test'));
     $this->assertTrue($this->_model->close());
 }