__destruct() public method

Destroys a class instance.
public __destruct ( )
Beispiel #1
0
 /**
  * Destroys a class instance.
  */
 public function __destruct()
 {
     parent::__destruct();
     if (is_resource($this->server)) {
         xmlrpc_server_destroy($this->server);
     }
 }