Example #1
0
 /**
  * Wrapper method for MongoClient::__get().
  *
  * @see http://php.net/manual/en/mongoclient.get.php
  * @param string $database
  * @return \MongoDB
  */
 public function __get($database)
 {
     $this->initialize();
     return $this->mongoClient->__get($database);
 }