Пример #1
0
 /**
  * Destructor
  */
 public function destroy()
 {
     if (isset($this->_timeoutTimer)) {
         $this->_timeoutTimer->destroy();
         unset($this->_timeoutTimer);
     }
     parent::destroy();
 }
Пример #2
0
 /**
  * Destructor
  */
 public function destroy()
 {
     if (isset($this->_msCallLeg)) {
         unset($this->_msCallLeg);
     }
     if (isset($this->_sipCallLeg)) {
         unset($this->_sipCallLeg);
     }
     if (isset($this->_timer)) {
         $this->_timer->destroy();
         unset($this->_timer);
     }
     if (isset($this->_faxToneDetector)) {
         $this->_faxToneDetector->destroy();
         unset($this->_faxToneDetector);
     }
     if (isset($this->_forcedFaxNegotiator)) {
         $this->_forcedFaxNegotiator->destroy();
         unset($this->_forcedFaxNegotiator);
     }
     if (isset($this->_relayer)) {
         $this->_relayer->destroy();
         unset($this->_relayer);
     }
     parent::destroy();
 }
Пример #3
0
 /**
  * Destructor
  */
 public function destroy()
 {
     if (isset($this->_msCallLeg)) {
         unset($this->_msCallLeg);
     }
     if (isset($this->_timer)) {
         $this->_timer->destroy();
         unset($this->_timer);
     }
     parent::destroy();
 }
Пример #4
0
 /**
  * Destructor
  */
 public function destroy()
 {
     if (isset($this->_timer)) {
         $this->_timer->destroy();
         unset($this->_timer);
     }
     if (isset($this->_mediaServerCallLeg)) {
         unset($this->_mediaServerCallLeg);
     }
     if (isset($this->_storage)) {
         unset($this->_storage);
     }
     parent::destroy();
 }
Пример #5
0
Файл: Menu.php Проект: cwcw/cms
 /**
  * Destructor
  */
 public function destroy()
 {
     if (isset($this->_counter)) {
         $this->_counter->destroy();
         unset($this->_counter);
     }
     if (isset($this->_timer)) {
         $this->_timer->destroy();
         unset($this->_timer);
     }
     if (isset($this->_dtmfHandler)) {
         $this->_dtmfHandler->destroy();
         unset($this->_dtmfHandler);
     }
     if (isset($this->_mediaPlayer)) {
         $this->_mediaPlayer->destroy();
         unset($this->_mediaPlayer);
     }
     parent::destroy();
 }
Пример #6
0
 /**
  * Destructor
  *
  * @return void
  */
 public function destroy()
 {
     if (isset($this->_leftCallLeg)) {
         unset($this->_leftCallLeg);
     }
     if (isset($this->_rightCallLeg)) {
         unset($this->_rightCallLeg);
     }
     if (isset($this->_relayer)) {
         $this->_relayer->destroy();
         unset($this->_relayer);
     }
     if (isset($this->_timer)) {
         $this->_timer->destroy();
         unset($this->_timer);
     }
     parent::destroy();
 }