Пример #1
0
 /**
  * batchInsert.
  */
 public function batchInsert(array $a, array $options = array())
 {
     $this->time->start();
     $return = parent::batchInsert($a, $options);
     $time = $this->time->stop();
     $this->log(array('type' => 'batchInsert', 'nb' => count($a), 'data' => $a, 'options' => $options, 'time' => $time));
     return $return;
 }