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/OperatorTrait.php')
-rw-r--r--src/database/databasetraits/OperatorTrait.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/database/databasetraits/OperatorTrait.php b/src/database/databasetraits/OperatorTrait.php
index 479844be..2be91f54 100644
--- a/src/database/databasetraits/OperatorTrait.php
+++ b/src/database/databasetraits/OperatorTrait.php
@@ -1,13 +1,11 @@
<?php
/**
- * PHPPgAdmin 6.1.3
+ * PHPPgAdmin6
*/
namespace PHPPgAdmin\Database\Traits;
-use PHPPgAdmin\ADORecordSet;
-
/**
* Common trait for operators manipulation.
*/
@@ -16,7 +14,7 @@ trait OperatorTrait
/**
* Returns a list of all operators in the database.
*
- * @return \RecordSet|int|string
+ * @return \ADORecordSet|bool|int|string
*/
public function getOperators()
{
@@ -90,7 +88,7 @@ trait OperatorTrait
*
* @param mixed $operator_oid The oid of the operator
*
- * @return \RecordSet|int|string
+ * @return \ADORecordSet|bool|int|string
*/
public function getOperator($operator_oid)
{
@@ -124,7 +122,7 @@ trait OperatorTrait
/**
* Gets all opclasses.
*
- * @return \RecordSet|int|string
+ * @return \ADORecordSet|bool|int|string
*/
public function getOpClasses()
{