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/FunctionTrait.php')
-rw-r--r--src/database/databasetraits/FunctionTrait.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/database/databasetraits/FunctionTrait.php b/src/database/databasetraits/FunctionTrait.php
index e8dc715f..d6e5eee6 100644
--- a/src/database/databasetraits/FunctionTrait.php
+++ b/src/database/databasetraits/FunctionTrait.php
@@ -17,7 +17,7 @@ trait FunctionTrait
* @param bool $all If true, will find all available functions, if false just those in search path
* @param mixed $type If truthy, will return functions of type trigger
*
- * @return \PHPPgAdmin\ADORecordSet|int
+ * @return int|\PHPPgAdmin\ADORecordSet
*/
public function getFunctions($all = false, $type = null)
{
@@ -328,7 +328,7 @@ trait FunctionTrait
* @param int $function_oid The OID of the function to drop
* @param bool $cascade True to cascade drop, false to restrict
*
- * @return \PHPPgAdmin\ADORecordSet|int
+ * @return int|\PHPPgAdmin\ADORecordSet
*/
public function dropFunction($function_oid, $cascade)
{
@@ -351,7 +351,7 @@ trait FunctionTrait
*
* @param int $function_oid
*
- * @return \PHPPgAdmin\ADORecordSet|int
+ * @return int|\PHPPgAdmin\ADORecordSet
*
* @internal param string The $func name of the function to retrieve
*/
@@ -390,7 +390,7 @@ trait FunctionTrait
*
* @param int $function_oid
*
- * @return \PHPPgAdmin\ADORecordSet|int
+ * @return int|\PHPPgAdmin\ADORecordSet
*/
public function getFunctionDef($function_oid)
{