mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
ENH Updated deprecation warning message
This commit is contained in:
parent
6669d54f59
commit
05674adf51
@ -367,14 +367,16 @@ class MySQLDatabase extends Database implements TransactionManager
|
||||
|
||||
public function transactionEnd($chain = false)
|
||||
{
|
||||
$result = $this->getTransactionManager()->transactionEnd();
|
||||
|
||||
if ($chain) {
|
||||
Deprecation::notice('4.4', '$chain argument is deprecated');
|
||||
Deprecation::notice(
|
||||
'4.4.0',
|
||||
'$chain argument in ' . __METHOD__ . ' is deprecated',
|
||||
Deprecation::SCOPE_GLOBAL
|
||||
);
|
||||
return $this->getTransactionManager()->transactionStart();
|
||||
}
|
||||
|
||||
return $result;
|
||||
return $this->getTransactionManager()->transactionEnd();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user