Skip to content

Commit b182e70

Browse files
committed
Fixing static analysis issues
Fixing issue raised by phpstan
1 parent bb1e554 commit b182e70

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Test/DbalPersistedConnection.php

+6
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,22 @@ public function connect()
4141
public function beginTransaction()
4242
{
4343
$this->wrapTransactionNestingLevel('beginTransaction');
44+
45+
return true;
4446
}
4547

4648
public function commit()
4749
{
4850
$this->wrapTransactionNestingLevel('commit');
51+
52+
return true;
4953
}
5054

5155
public function rollBack()
5256
{
5357
$this->wrapTransactionNestingLevel('rollBack');
58+
59+
return true;
5460
}
5561

5662
/**

0 commit comments

Comments
 (0)