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 /drivers | |
| 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 'drivers')
| -rw-r--r-- | drivers/adodb-mysqli.inc.php | 10 | ||||
| -rw-r--r-- | drivers/adodb-oci8.inc.php | 10 |
2 files changed, 0 insertions, 20 deletions
diff --git a/drivers/adodb-mysqli.inc.php b/drivers/adodb-mysqli.inc.php index 545c6948..dcdb487b 100644 --- a/drivers/adodb-mysqli.inc.php +++ b/drivers/adodb-mysqli.inc.php @@ -1091,16 +1091,6 @@ class ADODB_mysqli extends ADOConnection { return array($sql,$stmt); } - /** - * Execute SQL - * - * @param string $sql SQL statement to execute, or possibly an array - * holding prepared statement ($sql[0] will hold sql text) - * @param array|bool $inputarr holds the input data to bind to. - * Null elements will be set to null. - * - * @return ADORecordSet|bool - */ public function execute($sql, $inputarr = false) { if ($this->fnExecute) { diff --git a/drivers/adodb-oci8.inc.php b/drivers/adodb-oci8.inc.php index ca787721..211fa9a2 100644 --- a/drivers/adodb-oci8.inc.php +++ b/drivers/adodb-oci8.inc.php @@ -971,16 +971,6 @@ END; return $rez; } - /** - * Execute SQL - * - * @param string|array $sql SQL statement to execute, or possibly an array holding - * prepared statement ($sql[0] will hold sql text). - * @param array|false $inputarr holds the input data to bind to. - * Null elements will be set to null. - * - * @return ADORecordSet|false - */ function Execute($sql,$inputarr=false) { if ($this->fnExecute) { |
