diff options
| author | Damien Regad <dregad@mantisbt.org> | 2023-04-30 00:51:47 +0200 |
|---|---|---|
| committer | Damien Regad <dregad@mantisbt.org> | 2023-04-30 00:51:47 +0200 |
| commit | aef9e9459712c9da90e9d83f1f4e7b8f21245a56 (patch) | |
| tree | 8a1d44cabe11bb20a5c32850d01c5c4572fdf039 /adodb.inc.php | |
| parent | b881dea297a93496fbd6d1d8a3c2fbe277c9231c (diff) | |
| download | adodb-aef9e9459712c9da90e9d83f1f4e7b8f21245a56.tar.gz adodb-aef9e9459712c9da90e9d83f1f4e7b8f21245a56.tar.bz2 adodb-aef9e9459712c9da90e9d83f1f4e7b8f21245a56.zip | |
PHPDoc: fix ADOConnection::execute() return type
Remove redundant PHPDoc block in child classes ADODB_mysqli, ADODB_oci8.
Fixes #964
Diffstat (limited to 'adodb.inc.php')
| -rw-r--r-- | adodb.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/adodb.inc.php b/adodb.inc.php index 269bd23c..e7d86719 100644 --- a/adodb.inc.php +++ b/adodb.inc.php @@ -1466,7 +1466,7 @@ if (!defined('_ADODB_LAYER')) { * @param array|bool $inputarr holds the input data to bind to. * Null elements will be set to null. * - * @return ADORecordSet|bool + * @return ADORecordSet|false */ public function Execute($sql, $inputarr = false) { if ($this->fnExecute) { |
