Merge pull request #12237 from owncloud/fix-12236

Make declaration compatible
This commit is contained in:
Morris Jobke 2014-11-18 10:30:17 +01:00
commit 36ba935381
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);
}