eZ\Publish\Core\Persistence\Legacy\TransactionHandler::commit PHP Method

commit() public method

Commit transaction, or throw exceptions if no transactions has been started.
public commit ( )
    public function commit()
    {
        try {
            $this->dbHandler->commit();
        } catch (Exception $e) {
            throw new RuntimeException($e->getMessage(), 0, $e);
        }
    }