1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-25 00:41:52 +02:00

PHPDoc fix.

This commit is contained in:
camer0n
2023-09-01 07:31:52 -07:00
parent 3af99c70cd
commit 1ef0cc3352
3 changed files with 3 additions and 3 deletions

View File

@@ -285,7 +285,7 @@
* @param bool $debug
* @param string $log_type
* @param string $log_remark
* @return int Last insert ID or false on error. When using '_DUPLICATE_KEY_UPDATE' return ID, true on update, 0 on no change and false on error.
* @return int|bool Last insert ID or false on error. When using '_DUPLICATE_KEY_UPDATE' return ID, true on update, 0 on no change and false on error.
* @desc Insert a row into the table<br />
* <br />
* Example:<br />

View File

@@ -737,7 +737,7 @@ class e_db_pdo implements e_db
* @param bool $debug
* @param string $log_type
* @param string $log_remark
* @return int Last insert ID or false on error. When using '_DUPLICATE_KEY_UPDATE' return ID, true on update, 0 on no change and false on error.
* @return int|bool Last insert ID or false on error. When using '_DUPLICATE_KEY_UPDATE' return ID, true on update, 0 on no change and false on error.
* @desc Insert a row into the table<br />
* <br />
* Example:<br />

View File

@@ -683,7 +683,7 @@ class e_db_mysql implements e_db
* @param bool $debug
* @param string $log_type
* @param string $log_remark
* @return int Last insert ID or false on error. When using '_DUPLICATE_KEY_UPDATE' return ID, true on update, 0 on no change and false on error.
* @return int|bool Last insert ID or false on error. When using '_DUPLICATE_KEY_UPDATE' return ID, true on update, 0 on no change and false on error.
* @desc Insert a row into the table<br />
* <br />
* Example:<br />