Mage_Core_Model_Resource_Session::open PHP Метод

open() публичный Метод

Open session
public open ( string $savePath, string $sessName ) : boolean
$savePath string ignored
$sessName string ignored
Результат boolean
    public function open($savePath, $sessName)
    {
        return true;
    }

Usage Example

Пример #1
0
 public function testOpenAndClose()
 {
     $this->assertTrue($this->_model->open('', 'test'));
     $this->assertTrue($this->_model->close());
 }