Prose\UsingPDODB::commitTransaction PHP Method

commitTransaction() public method

public commitTransaction ( )
    public function commitTransaction()
    {
        // what are we doing?
        $log = usingLog()->startAction("commit PDO database transaction");
        try {
            $this->args[0]->commit();
            // all done
            $log->endAction();
        } catch (Exception $e) {
            throw new E5xx_ActionFailed(__METHOD__, $e->getMessage());
        }
    }