__destruct() public method

The parent does not provide a destructor, so including an explicit one here.
public __destruct ( )
Ejemplo n.º 1
0
 /**
  * Called after each test object.
  */
 public function __destruct()
 {
     $this->user->delete();
     $this->user2->delete();
     $this->apikey->delete();
     elgg_set_ignore_access($this->ia);
     // all __destruct() code should go above here
     parent::__destruct();
 }
 /**
  * Called after each test object.
  */
 public function __destruct()
 {
     global $CONFIG;
     foreach ($this->entities as $e) {
         $e->delete();
     }
     // manually remove subtype entries since there is no way
     // to using the API.
     $subtype_arr = array();
     foreach ($this->subtypes as $type => $subtypes) {
         foreach ($subtypes as $subtype) {
             remove_subtype($type, $subtype);
         }
     }
     parent::__destruct();
 }
 /**
  * Called after each test object.
  */
 public function __destruct()
 {
     global $CONFIG;
     $this->swallowErrors();
     foreach ($this->entities as $e) {
         $e->delete();
     }
     // manually remove subtype entries since there is no way
     // to using the API.
     $subtype_arr = array();
     foreach ($this->subtypes as $type => $subtypes) {
         foreach ($subtypes as $subtype) {
             $subtype_arr[] = "'{$subtype}'";
         }
     }
     $subtype_str = implode(',', $subtype_arr);
     $q = "DELETE FROM {$CONFIG->dbprefix}entity_subtypes WHERE subtype IN ({$subtype_str})";
     delete_data($q);
     parent::__destruct();
 }
 /**
  * Called after each test object.
  */
 public function __destruct()
 {
     elgg_set_ignore_access($this->ia);
     // all __destruct() code should go above here
     parent::__destruct();
 }
Ejemplo n.º 5
0
 /**
  * Called after each test object.
  */
 public function __destruct()
 {
     $this->user->delete();
     // all __destruct() code should go above here
     parent::__destruct();
 }
Ejemplo n.º 6
0
 /**
  * Called after each test object.
  */
 public function __destruct()
 {
     $this->object->delete();
     parent::__destruct();
 }
Ejemplo n.º 7
0
 /**
  * Called after each test object.
  */
 public function __destruct()
 {
     // all __destruct() code should go above here
     parent::__destruct();
 }
Ejemplo n.º 8
0
 public function __destruct()
 {
     parent::__destruct();
     remove_subtype('object', 'elgg_entity_test_subtype');
 }
 /**
  * Called after each test object.
  */
 public function __destruct()
 {
     parent::__destruct();
 }