rollback() public method

Roll back a transaction
public rollback ( string $transactionId ) : void
$transactionId string The transaction to roll back
return void
Example #1
0
 /**
  * Roll back a Transaction
  *
  * Example:
  * ```
  * $transaction->rollback();
  * ```
  *
  * @return void
  */
 public function rollback()
 {
     return $this->operation->rollback($this->transactionId);
 }