Make declaration compatible

Fixes #12236
This commit is contained in:
Lukas Reschke 2014-11-17 18:30:17 +01:00
parent af7688ec17
commit 0b9dffa828
1 changed files with 5 additions and 5 deletions

View File

@ -20,7 +20,7 @@ class OracleConnection extends Connection {
return $return;
}
/*
/**
* {@inheritDoc}
*/
public function insert($tableName, array $data, array $types = array()) {
@ -29,7 +29,7 @@ class OracleConnection extends Connection {
return parent::insert($tableName, $data, $types);
}
/*
/**
* {@inheritDoc}
*/
public function update($tableName, array $data, array $identifier, array $types = array()) {
@ -39,11 +39,11 @@ class OracleConnection extends Connection {
return parent::update($tableName, $data, $identifier, $types);
}
/*
/**
* {@inheritDoc}
*/
public function delete($tableName, array $identifier) {
$tableName = $this->quoteIdentifier($tableName);
public function delete($tableExpression, array $identifier, array $types = array()) {
$tableName = $this->quoteIdentifier($tableExpression);
$identifier = $this->quoteKeys($identifier);
return parent::delete($tableName, $identifier);
}