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.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/database/databasetraits/OperatorTrait.php b/src/database/databasetraits/OperatorTrait.php
index 040cb3fb..479844be 100644
--- a/src/database/databasetraits/OperatorTrait.php
+++ b/src/database/databasetraits/OperatorTrait.php
@@ -16,7 +16,7 @@ trait OperatorTrait
/**
* Returns a list of all operators in the database.
*
- * @return ADORecordSet|int
+ * @return \RecordSet|int|string
*/
public function getOperators()
{
@@ -50,7 +50,7 @@ trait OperatorTrait
* @param mixed $operator_oid The OID of the operator to drop
* @param bool $cascade True to cascade drop, false to restrict
*
- * @return ADORecordSet|int
+ * @return int|string
*/
public function dropOperator($operator_oid, $cascade)
{
@@ -90,7 +90,7 @@ trait OperatorTrait
*
* @param mixed $operator_oid The oid of the operator
*
- * @return ADORecordSet|int
+ * @return \RecordSet|int|string
*/
public function getOperator($operator_oid)
{
@@ -124,7 +124,7 @@ trait OperatorTrait
/**
* Gets all opclasses.
*
- * @return ADORecordSet|int
+ * @return \RecordSet|int|string
*/
public function getOpClasses()
{