Mage_Core_Model_Resource_Session::open PHP Method

open() public method

Open session
public open ( string $savePath, string $sessName ) : boolean
$savePath string ignored
$sessName string ignored
return boolean
    public function open($savePath, $sessName)
    {
        return true;
    }

Usage Example

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