예제 #1
0
파일: BeeHub.php 프로젝트: niekbosch/BeeHub
 /**
  * Closes the current mongo connection so a new connection will be made
  */
 public static function forceMongoReconnect()
 {
     if (self::$mongo instanceof MongoClient) {
         self::$mongo->close();
     }
     self::$mongo = null;
 }