コード例 #1
-1
ファイル: Collection.php プロジェクト: algatux/mongo-bundle
 /**
  * {@inheritdoc}
  */
 public function updateOne($filter, $update, array $options = [])
 {
     $event = $this->startQueryLogging(__FUNCTION__, $filter, $update, $options);
     $result = parent::updateOne($filter, $update, $options);
     $this->logger->logQuery($event);
     return $result;
 }