예제 #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();
 }