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/RowTrait.php')
-rw-r--r--src/database/databasetraits/RowTrait.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/database/databasetraits/RowTrait.php b/src/database/databasetraits/RowTrait.php
index 10b71d46..935b1be8 100644
--- a/src/database/databasetraits/RowTrait.php
+++ b/src/database/databasetraits/RowTrait.php
@@ -19,7 +19,7 @@ trait RowTrait
* @param string $table The name of a table
* @param array $key The associative array holding the key to retrieve
*
- * @return ADORecordSet|int
+ * @return \RecordSet|int|string
*/
public function browseRow($table, $key)
{
@@ -55,7 +55,7 @@ trait RowTrait
*
* @param string $table The table for which to retrieve the identifier
*
- * @return array|array<integer,string>|int An array mapping attribute number to attribute name, empty for no identifiers
+ * @return array|int An array mapping attribute number to attribute name, empty for no identifiers
*/
public function getRowIdentifier($table)
{
@@ -126,7 +126,7 @@ trait RowTrait
* @param array $format An array of the data type (VALUE or EXPRESSION)
* @param array $types An array of field types
*
- * @return ADORecordSet|int
+ * @return int|string
*/
public function insertRow($table, $fields, $values, $nulls, $format, $types)
{
@@ -252,7 +252,7 @@ trait RowTrait
* @param array $types An array of field types
* @param array $keyarr An array mapping column => value to update
*
- * @return bool|int 0 success
+ * @return int 0 success
*/
public function editRow($table, $vars, $nulls, $format, $types, $keyarr)
{
@@ -346,7 +346,7 @@ trait RowTrait
* @param array $key An array mapping column => value to delete
* @param string $schema the schema of the table
*
- * @return bool|int 0 success
+ * @return int 0 success
*/
public function deleteRow($table, $key, $schema = '')
{