commit() public method

commit this operation
public commit ( )
Exemplo n.º 1
0
 /**
  * commit a bulk-transaction
  * @return array
  * @throws Exception
  */
 public function commitBulk()
 {
     if ($this->bulk && $this->bulk->count()) {
         $result = $this->bulk->commit();
         $this->bulk = null;
         return $result;
     }
     throw new Exception('bulk error!');
 }