예제 #1
0
 public function testUnsetAll()
 {
     $data = array('key' => 'value');
     $this->_model->setData($data);
     $this->assertEquals($data, $this->_model->getData());
     $this->_model->unsetAll();
     $this->assertEquals(array(), $this->_model->getData());
 }
예제 #2
0
 /**
  * Unset all data associated with object
  */
 public function unsetAll()
 {
     parent::unsetAll();
     $this->_quoteId = null;
     $this->_response = null;
     $this->_redirectMessage = null;
     $this->_redirectTitle = null;
 }
예제 #3
0
파일: Session.php 프로젝트: vberzsin/shop
 /**
  * Unset all data associated with object
  */
 public function unsetAll()
 {
     parent::unsetAll();
     $this->_quote = null;
 }
예제 #4
0
 public function unsetAll()
 {
     parent::unsetAll();
 }
예제 #5
0
 public function unsetAll()
 {
     parent::unsetAll();
     $this->_collections = null;
 }