Fix incompatible signatures of inherited methods

This commit is contained in:
Kijin Sung 2015-12-08 14:07:42 +09:00
parent f6c226a0b7
commit 6473115ed3
9 changed files with 16 additions and 16 deletions

View file

@ -144,7 +144,7 @@ class DBCubrid extends DB
* this method is private
* @return boolean
*/
function _begin($transactionLevel)
function _begin($transactionLevel = 0)
{
if(__CUBRID_VERSION__ >= '8.4.0')
{
@ -167,7 +167,7 @@ class DBCubrid extends DB
* this method is private
* @return boolean
*/
function _rollback($transactionLevel)
function _rollback($transactionLevel = 0)
{
$connection = $this->_getConnection('master');