コード例 #1
0
ファイル: Mongo.php プロジェクト: jubinpatel/horde
 /**
  */
 public function checkMongoIndices()
 {
     foreach ($this->_indexes as $collection => $indices) {
         if (!$this->_mongo->checkIndices($collection, $indices)) {
             return false;
         }
     }
     return true;
 }