We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a01511d commit 13db328Copy full SHA for 13db328
framework/db/schema/mssql/CMssqlPdoAdapter.php
@@ -37,6 +37,7 @@ public function lastInsertId ($sequence=NULL)
37
*
38
* @return boolean
39
*/
40
+ #[ReturnTypeWillChange]
41
public function beginTransaction ()
42
{
43
$this->exec('BEGIN TRANSACTION');
@@ -51,6 +52,7 @@ public function beginTransaction ()
51
52
53
54
55
56
public function commit ()
57
58
$this->exec('COMMIT TRANSACTION');
@@ -65,6 +67,7 @@ public function commit ()
65
67
66
68
69
70
71
public function rollBack ()
72
73
$this->exec('ROLLBACK TRANSACTION');
0 commit comments