@@ -483,7 +483,7 @@ |
||
| 483 | 483 | * @param string $orderby |
| 484 | 484 | * @param string $direction ASC, DESC or RANDOM |
| 485 | 485 | * @param bool $escape |
| 486 | - * @return object |
|
| 486 | + * @return CI_DB_query_builder |
|
| 487 | 487 | */ |
| 488 | 488 | public function order_by($orderby, $direction = '', $escape = NULL) |
| 489 | 489 | { |
@@ -711,7 +711,6 @@ discard block |
||
| 711 | 711 | * |
| 712 | 712 | * Legacy CI_Session compatibility method |
| 713 | 713 | * |
| 714 | - * @param mixed $data Session data key(s) |
|
| 715 | 714 | * @return void |
| 716 | 715 | */ |
| 717 | 716 | public function unset_userdata($key) |
@@ -879,7 +878,6 @@ discard block |
||
| 879 | 878 | * |
| 880 | 879 | * Legacy CI_Session compatibility method |
| 881 | 880 | * |
| 882 | - * @param mixed $data Session data key(s) |
|
| 883 | 881 | * @return void |
| 884 | 882 | */ |
| 885 | 883 | public function unset_tempdata($key) |
@@ -451,7 +451,7 @@ discard block |
||
| 451 | 451 | * |
| 452 | 452 | * This is just a dummy method that all drivers will override. |
| 453 | 453 | * |
| 454 | - * @return mixed |
|
| 454 | + * @return boolean |
|
| 455 | 455 | */ |
| 456 | 456 | public function db_connect() |
| 457 | 457 | { |
@@ -463,7 +463,7 @@ discard block |
||
| 463 | 463 | /** |
| 464 | 464 | * Persistent database connection |
| 465 | 465 | * |
| 466 | - * @return mixed |
|
| 466 | + * @return boolean |
|
| 467 | 467 | */ |
| 468 | 468 | public function db_pconnect() |
| 469 | 469 | { |
@@ -520,6 +520,7 @@ discard block |
||
| 520 | 520 | * Set client character set |
| 521 | 521 | * |
| 522 | 522 | * @param string |
| 523 | + * @param string $charset |
|
| 523 | 524 | * @return bool |
| 524 | 525 | */ |
| 525 | 526 | public function db_set_charset($charset) |
@@ -780,6 +781,7 @@ discard block |
||
| 780 | 781 | * not require all the features of the main query() function. |
| 781 | 782 | * |
| 782 | 783 | * @param string the sql query |
| 784 | + * @param string $sql |
|
| 783 | 785 | * @return mixed |
| 784 | 786 | */ |
| 785 | 787 | public function simple_query($sql) |
@@ -980,6 +982,7 @@ discard block |
||
| 980 | 982 | * |
| 981 | 983 | * @param string the sql statement |
| 982 | 984 | * @param array an array of bind data |
| 985 | + * @param string $sql |
|
| 983 | 986 | * @return string |
| 984 | 987 | */ |
| 985 | 988 | public function compile_binds($sql, $binds) |
@@ -1180,6 +1183,7 @@ discard block |
||
| 1180 | 1183 | * Platform-dependant string escape |
| 1181 | 1184 | * |
| 1182 | 1185 | * @param string |
| 1186 | + * @param string $str |
|
| 1183 | 1187 | * @return string |
| 1184 | 1188 | */ |
| 1185 | 1189 | protected function _escape_str($str) |
@@ -1473,6 +1477,7 @@ discard block |
||
| 1473 | 1477 | * @param string the table name |
| 1474 | 1478 | * @param array the insert keys |
| 1475 | 1479 | * @param array the insert values |
| 1480 | + * @param string $table |
|
| 1476 | 1481 | * @return string |
| 1477 | 1482 | */ |
| 1478 | 1483 | protected function _insert($table, $keys, $values) |