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:
authorffflabs <amenadiel@gmail.com>2020-02-26 00:02:54 +0300
committerffflabs <amenadiel@gmail.com>2020-02-26 00:02:54 +0300
commite9946667c91a8ff2f87d9f7ba1fba4d7148ff40d (patch)
tree5119a6a0514ae089e490f87d57f96962ded5c258 /src/database/Postgres80.php
parentd8d7a7e9c8849a8be9dc9a9585c096eb0f7d93d1 (diff)
Creating Tag v6.0.0-RC9 at 2020-02-25 - fixes composer scripts, cleanup unused code
Diffstat (limited to 'src/database/Postgres80.php')
-rw-r--r--src/database/Postgres80.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/database/Postgres80.php b/src/database/Postgres80.php
index 4a0ce5b1..b0522c42 100644
--- a/src/database/Postgres80.php
+++ b/src/database/Postgres80.php
@@ -57,7 +57,7 @@ class Postgres80 extends Postgres81
*
* @param null|string $currentdatabase
*
- * @return \PHPPgAdmin\ADORecordSet|int A list of databases, sorted alphabetically
+ * @return int|\PHPPgAdmin\ADORecordSet A list of databases, sorted alphabetically
*/
public function getDatabases($currentdatabase = null)
{
@@ -104,7 +104,7 @@ class Postgres80 extends Postgres81
/**
* Return all schemas in the current database.
*
- * @return \PHPPgAdmin\ADORecordSet|int All schemas, sorted alphabetically
+ * @return int|\PHPPgAdmin\ADORecordSet All schemas, sorted alphabetically
*/
public function getSchemas()
{
@@ -132,7 +132,7 @@ class Postgres80 extends Postgres81
*
* @param string $schema The name of the schema
*
- * @return \PHPPgAdmin\ADORecordSet|int Schema information
+ * @return int|\PHPPgAdmin\ADORecordSet Schema information
*/
public function getSchemaByName($schema)
{
@@ -155,7 +155,7 @@ class Postgres80 extends Postgres81
* @param string $username The username
* @param string $password The new password
*
- * @return \PHPPgAdmin\ADORecordSet|int 0 if operation was successful
+ * @return int|\PHPPgAdmin\ADORecordSet 0 if operation was successful
*/
public function changePassword($username, $password)
{
@@ -176,7 +176,7 @@ class Postgres80 extends Postgres81
* @param string $name The name of the aggregate
* @param string $basetype The input data type of the aggregate
*
- * @return \PHPPgAdmin\ADORecordSet|int A recordset
+ * @return int|\PHPPgAdmin\ADORecordSet A recordset
*/
public function getAggregate($name, $basetype)
{
@@ -431,7 +431,7 @@ class Postgres80 extends Postgres81
/**
* Return all tables in current database (and schema).
*
- * @return \PHPPgAdmin\ADORecordSet|int All tables, sorted alphabetically
+ * @return int|\PHPPgAdmin\ADORecordSet All tables, sorted alphabetically
*/
public function getTables()
{