Skip to content

Commit

Permalink
Update for latest dependency betas
Browse files Browse the repository at this point in the history
  • Loading branch information
trowski committed Dec 9, 2023
1 parent 3608f82 commit ccac7b1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"amphp/parser": "^1.1",
"amphp/pipeline": "^1",
"amphp/socket": "^2",
"amphp/sql": "dev-refactor-transactions as 2.0",
"amphp/sql-common": "dev-refactor-transactions as 2.0"
"amphp/sql": "^2-beta.6",
"amphp/sql-common": "^2-beta.7"
},
"require-dev": {
"ext-mysqli": "*",
Expand Down
5 changes: 5 additions & 0 deletions src/SocketMysqlConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ public function getConfig(): MysqlConfig
return $this->processor->getConfig();
}

public function getTransactionIsolation(): TransactionIsolation
{
return $this->transactionIsolation;
}

public function setTransactionIsolation(TransactionIsolation $isolation): void
{
$this->transactionIsolation = $isolation;
Expand Down

0 comments on commit ccac7b1

Please sign in to comment.