diff options
| author | Damien Regad <dregad@mantisbt.org> | 2026-03-01 00:16:55 +0100 |
|---|---|---|
| committer | Damien Regad <dregad@mantisbt.org> | 2026-03-01 00:16:55 +0100 |
| commit | 71beadd0e85bc36c112747dc8f5367b641bba576 (patch) | |
| tree | 7843f037ac718ddd645df3472b201244dcbf7517 | |
| parent | f391fb97f3cb6620d918cda5fb2c5262e548f07a (diff) | |
| download | adodb-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.php | 2 | ||||
| -rw-r--r-- | drivers/adodb-postgres64.inc.php | 2 |
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)) { |
