Return a "MongoCollection" instance
\MongoCollection
private function getCollection() {
if (null === $this->collection) {
$this->collection = $this->mongo
->selectCollection($this->options['database'], $this->options['collection']);
}
return $this->collection;
}