Skip to content

Commit

Permalink
Merge branch 'fix-rollback' into patch-and-refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
darkterminal committed Jul 9, 2024
2 parents 72c6dc3 + 05bc369 commit 4ccd962
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2.1.0
uses: dependabot/fetch-metadata@v2.2.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"

Expand Down
5 changes: 5 additions & 0 deletions src/Database/LibSQLDatabase.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,11 @@ public function rollBack(): bool
return $result;
}

public function inTransaction(): bool
{
return $this->inTransaction;
}

public function sync(): void
{
if ($this->connection_mode !== 'remote_replica') {
Expand Down

0 comments on commit 4ccd962

Please sign in to comment.