Skip to content

Commit 79e4452

Browse files
authored
fix "Cannot unset $this" error (#1341)
1 parent 2bedae9 commit 79e4452

File tree

1 file changed

+1
-1
lines changed
  • lib/Zend/Service/WindowsAzure/Storage

1 file changed

+1
-1
lines changed

lib/Zend/Service/WindowsAzure/Storage/Batch.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ protected function _clean()
105105
unset($this->_operations);
106106
$this->_storageClient->setCurrentBatch(null);
107107
$this->_storageClient = null;
108-
unset($this);
108+
//unset($this); //removing $this is not possible
109109
}
110110

111111
/**

0 commit comments

Comments
 (0)