aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/driver/mysql_base.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-03-17 13:18:05 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-04-01 19:17:40 +0200
commit1f28451d587aa3566cdb6f7848439d2d5efdf820 (patch)
tree888aa033c7497556928a597bb09082a9d8e0dbc8 /phpBB/phpbb/db/driver/mysql_base.php
parent7b131119e6d44e8b884c592f0bf2a90cc3372980 (diff)
downloadforums-1f28451d587aa3566cdb6f7848439d2d5efdf820.tar
forums-1f28451d587aa3566cdb6f7848439d2d5efdf820.tar.gz
forums-1f28451d587aa3566cdb6f7848439d2d5efdf820.tar.bz2
forums-1f28451d587aa3566cdb6f7848439d2d5efdf820.tar.xz
forums-1f28451d587aa3566cdb6f7848439d2d5efdf820.zip
[ticket/12282] Use {@inheritDoc} for inherited methods
PHPBB3-12282
Diffstat (limited to 'phpBB/phpbb/db/driver/mysql_base.php')
-rw-r--r--phpBB/phpbb/db/driver/mysql_base.php17
1 files changed, 2 insertions, 15 deletions
diff --git a/phpBB/phpbb/db/driver/mysql_base.php b/phpBB/phpbb/db/driver/mysql_base.php
index 87b6d153a9..d0f6a9e8fa 100644
--- a/phpBB/phpbb/db/driver/mysql_base.php
+++ b/phpBB/phpbb/db/driver/mysql_base.php
@@ -43,14 +43,7 @@ abstract class mysql_base extends \phpbb\db\driver\driver
}
/**
- * Gets the estimated number of rows in a specified table.
- *
- * @param string $table_name Table name
- *
- * @return string Number of rows in $table_name.
- * Prefixed with ~ if estimated (otherwise exact).
- *
- * @access public
+ * {@inheritDoc}
*/
function get_estimated_row_count($table_name)
{
@@ -72,13 +65,7 @@ abstract class mysql_base extends \phpbb\db\driver\driver
}
/**
- * Gets the exact number of rows in a specified table.
- *
- * @param string $table_name Table name
- *
- * @return string Exact number of rows in $table_name.
- *
- * @access public
+ * {@inheritDoc}
*/
function get_row_count($table_name)
{