/**
  * Destructor
  *
  * @author Atul Atri
  * @return bool "true" on Success, "false" otherwise
  */
 public function __destruct()
 {
     parent::__destruct();
     return true;
 }
 /**
  * The default destructor
  *
  * @author Abhinav Kumar <*****@*****.**>
  * @return bool 'TRUE' on success & 'FALSE' otherwise
  */
 public function __destruct()
 {
     return parent::__destruct();
 }