__destruct() public method

Always call parent if you redefine this/.
public __destruct ( )
 /**
  * Destructor.
  */
 public function __destruct()
 {
     $this->dimesions = NULL;
     $this->factors = NULL;
     $this->data = NULL;
     parent::__destruct();
 }
Esempio n. 2
0
 /**
  * Destructor.
  */
 public function __destruct()
 {
     parent::__destruct();
 }
 public function __destruct() {
     // FIXME rollback all unprepared transactions
     // prepared transactions can be recovered later
     parent::__destruct();
 }
Esempio n. 4
0
 /**
  * Destructor.
  */
 public function __destruct()
 {
     $this->head = NULL;
     $this->tail = NULL;
     parent::__destruct();
 }
 public function __destruct() {
     $this->release();
     parent::__destruct();
 }
Esempio n. 6
0
 /**
  * Destructor.
  */
 public function __destruct()
 {
     $this->bestSolution = NULL;
     parent::__destruct();
 }
 public function __destruct() {
     if (($this->status == TransactionStatus::ACTIVE) || ($this->status == TransactionStatus::MARKED_ROLLBACK)) {
         $this->rollback();
     }
     parent::__destruct();
 }
Esempio n. 8
0
 /**
  * Destructor.
  */
 public function __destruct()
 {
     $this->data = NULL;
     parent::__destruct();
 }