Skip to content

Commit 13db328

Browse files
authored
Update CMssqlPdoAdapter.php
1 parent a01511d commit 13db328

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

framework/db/schema/mssql/CMssqlPdoAdapter.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ public function lastInsertId ($sequence=NULL)
3737
*
3838
* @return boolean
3939
*/
40+
#[ReturnTypeWillChange]
4041
public function beginTransaction ()
4142
{
4243
$this->exec('BEGIN TRANSACTION');
@@ -51,6 +52,7 @@ public function beginTransaction ()
5152
*
5253
* @return boolean
5354
*/
55+
#[ReturnTypeWillChange]
5456
public function commit ()
5557
{
5658
$this->exec('COMMIT TRANSACTION');
@@ -65,6 +67,7 @@ public function commit ()
6567
*
6668
* @return boolean
6769
*/
70+
#[ReturnTypeWillChange]
6871
public function rollBack ()
6972
{
7073
$this->exec('ROLLBACK TRANSACTION');

0 commit comments

Comments
 (0)