Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/database/databasetraits/StatsTrait.php')
-rw-r--r--src/database/databasetraits/StatsTrait.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/database/databasetraits/StatsTrait.php b/src/database/databasetraits/StatsTrait.php
index 6460d4af..e15d14ea 100644
--- a/src/database/databasetraits/StatsTrait.php
+++ b/src/database/databasetraits/StatsTrait.php
@@ -16,7 +16,7 @@ trait StatsTrait
*
* @param string $database The database to fetch stats for
*
- * @return \PHPPgAdmin\ADORecordSet|int
+ * @return int|\PHPPgAdmin\ADORecordSet
*/
public function getStatsDatabase($database)
{
@@ -32,7 +32,7 @@ trait StatsTrait
*
* @param string $table The table to fetch stats for
*
- * @return \PHPPgAdmin\ADORecordSet|int
+ * @return int|\PHPPgAdmin\ADORecordSet
*/
public function getStatsTableTuples($table)
{
@@ -51,7 +51,7 @@ trait StatsTrait
*
* @param string $table The table to fetch stats for
*
- * @return \PHPPgAdmin\ADORecordSet|int
+ * @return int|\PHPPgAdmin\ADORecordSet
*/
public function getStatsTableIO($table)
{
@@ -70,7 +70,7 @@ trait StatsTrait
*
* @param string $table The table to fetch index stats for
*
- * @return \PHPPgAdmin\ADORecordSet|int
+ * @return int|\PHPPgAdmin\ADORecordSet
*/
public function getStatsIndexTuples($table)
{
@@ -89,7 +89,7 @@ trait StatsTrait
*
* @param string $table The table to fetch index stats for
*
- * @return \PHPPgAdmin\ADORecordSet|int
+ * @return int|\PHPPgAdmin\ADORecordSet
*/
public function getStatsIndexIO($table)
{