update inherit docs comment
This commit is contained in:
parent
55efe1e56c
commit
0a2a4cb12e
1 changed files with 3 additions and 3 deletions
|
@ -21,7 +21,7 @@ class OracleConnection extends Connection {
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* (inherit docs)
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
public function insert($tableName, array $data, array $types = array()) {
|
public function insert($tableName, array $data, array $types = array()) {
|
||||||
$tableName = $this->quoteIdentifier($tableName);
|
$tableName = $this->quoteIdentifier($tableName);
|
||||||
|
@ -30,7 +30,7 @@ class OracleConnection extends Connection {
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* (inherit docs)
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
public function update($tableName, array $data, array $identifier, array $types = array()) {
|
public function update($tableName, array $data, array $identifier, array $types = array()) {
|
||||||
$tableName = $this->quoteIdentifier($tableName);
|
$tableName = $this->quoteIdentifier($tableName);
|
||||||
|
@ -40,7 +40,7 @@ class OracleConnection extends Connection {
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* (inherit docs)
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
public function delete($tableName, array $identifier) {
|
public function delete($tableName, array $identifier) {
|
||||||
$tableName = $this->quoteIdentifier($tableName);
|
$tableName = $this->quoteIdentifier($tableName);
|
||||||
|
|
Loading…
Reference in a new issue