summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Regad <dregad@mantisbt.org>2026-03-01 00:16:55 +0100
committerDamien Regad <dregad@mantisbt.org>2026-03-01 00:16:55 +0100
commit71beadd0e85bc36c112747dc8f5367b641bba576 (patch)
tree7843f037ac718ddd645df3472b201244dcbf7517
parentf391fb97f3cb6620d918cda5fb2c5262e548f07a (diff)
downloadadodb-71beadd0e85bc36c112747dc8f5367b641bba576.tar.gz
adodb-71beadd0e85bc36c112747dc8f5367b641bba576.tar.bz2
adodb-71beadd0e85bc36c112747dc8f5367b641bba576.zip
Remove `mixed` return type
Not supported on PHP 7.4. Fixes #1210
-rw-r--r--adodb.inc.php2
-rw-r--r--drivers/adodb-postgres64.inc.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/adodb.inc.php b/adodb.inc.php
index f680b6d3..453f4e7d 100644
--- a/adodb.inc.php
+++ b/adodb.inc.php
@@ -3401,7 +3401,7 @@ http://www.stanford.edu/dept/itss/docs/oracle/10g/server.101/b10759/statements_1
string $table,
bool $numIndexes=false,
bool $useattnum=false
- ) : mixed {
+ ) {
$objarr = $this->MetaColumns($table);
if (!is_array($objarr)) {
diff --git a/drivers/adodb-postgres64.inc.php b/drivers/adodb-postgres64.inc.php
index 57f6955c..9fd8ee5c 100644
--- a/drivers/adodb-postgres64.inc.php
+++ b/drivers/adodb-postgres64.inc.php
@@ -661,7 +661,7 @@ class ADODB_postgres64 extends ADOConnection{
string $table,
bool $numIndexes=false,
bool $useattnum=false
- ) : mixed {
+ ) {
$objarr = $this->MetaColumns($table);
if (!is_array($objarr)) {