Skip to content
Snippets Groups Projects
Commit 0a2a4cb1 authored by Bart Visscher's avatar Bart Visscher
Browse files

update inherit docs comment

parent 55efe1e5
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ class OracleConnection extends Connection {
}
/*
* (inherit docs)
* {@inheritDoc}
*/
public function insert($tableName, array $data, array $types = array()) {
$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()) {
$tableName = $this->quoteIdentifier($tableName);
......@@ -40,7 +40,7 @@ class OracleConnection extends Connection {
}
/*
* (inherit docs)
* {@inheritDoc}
*/
public function delete($tableName, array $identifier) {
$tableName = $this->quoteIdentifier($tableName);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment