/**
  * @brief Disconnect
  * @returns true/false
  *
  * This is good bye, good bye, yeah!
  */
 public static function disconnect()
 {
     // Cut connection if required
     if (self::$DBConnection) {
         self::$DBConnection->disconnect();
         self::$DBConnection = false;
     }
     return true;
 }