aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-09-18 16:38:59 +0200
committerBart Visscher <bartv@thisnet.nl>2013-09-19 18:59:06 +0200
commit0a2a4cb12ec620fc6807e990223ba0648d43da77 (patch)
tree754f5970625fad7601b3842d8e26ea885b878453
parent55efe1e56ced021ae99d7af6d6331882fd8244ba (diff)
downloadnextcloud-server-0a2a4cb12ec620fc6807e990223ba0648d43da77.tar.gz
nextcloud-server-0a2a4cb12ec620fc6807e990223ba0648d43da77.zip
update inherit docs comment
-rw-r--r--lib/db/oracleconnection.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/db/oracleconnection.php b/lib/db/oracleconnection.php
index 3da3d91dbfa..e2fc4644f47 100644
--- a/lib/db/oracleconnection.php
+++ b/lib/db/oracleconnection.php
@@ -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);