Skip to content

Commit

Permalink
PHPDoc fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
CaMer0n committed Sep 1, 2023
1 parent 3af99c7 commit 1ef0cc3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion e107_handlers/e_db_interface.php
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ function index($table, $keyname, $fields=null, $retinfo = false);
* @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 />
Expand Down
2 changes: 1 addition & 1 deletion e107_handlers/e_db_pdo_class.php
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ public function select($table, $fields = '*', $arg = '', $noWhere = false, $debu
* @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 />
Expand Down
2 changes: 1 addition & 1 deletion e107_handlers/mysql_class.php
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ public function db_Select($table, $fields = '*', $arg = '', $mode = 'default', $
* @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 />
Expand Down

0 comments on commit 1ef0cc3

Please sign in to comment.