示例#1
0
文件: Decorator.php 项目: cwcw/cms
 /**
  * Destructor
  */
 public function destroy()
 {
     if (isset($this->_event)) {
         unset($this->_event);
     }
     parent::destroy();
 }
示例#2
0
文件: Decorator.php 项目: cwcw/cms
 /**
  * Destructor
  */
 public function destroy()
 {
     if (isset($this->_relayer)) {
         $this->_relayer->destroy();
         unset($this->_relayer);
     }
     parent::destroy();
 }
示例#3
0
文件: Decorator.php 项目: cwcw/cms
 /**
  * Destructor
  */
 public function destroy()
 {
     if (isset($this->_event)) {
         unset($this->_event);
     }
     if (isset($this->_timer)) {
         $this->_timer->destroy();
         unset($this->_timer);
     }
     parent::destroy();
 }
示例#4
0
文件: Decorator.php 项目: cwcw/cms
 /**
  * Destructor
  */
 public function destroy()
 {
     if (isset($this->_failEvent)) {
         unset($this->_failEvent);
     }
     if (isset($this->_remoteSipCallLeg)) {
         unset($this->_remoteSipCallLeg);
     }
     if (isset($this->_iterator)) {
         unset($this->_iterator);
     }
     parent::destroy();
 }