@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | * @param string $library Library name |
| 186 | 186 | * @param array $params Optional parameters to pass to the library class constructor |
| 187 | 187 | * @param string $object_name An optional object name to assign to |
| 188 | - * @return object |
|
| 188 | + * @return CI_Loader |
|
| 189 | 189 | */ |
| 190 | 190 | public function library($library, $params = NULL, $object_name = NULL) |
| 191 | 191 | { |
@@ -229,7 +229,7 @@ discard block |
||
| 229 | 229 | * @param string $model Model name |
| 230 | 230 | * @param string $name An optional object name to assign to |
| 231 | 231 | * @param bool $db_conn An optional database connection configuration to initialize |
| 232 | - * @return object |
|
| 232 | + * @return CI_Loader |
|
| 233 | 233 | * |
| 234 | 234 | * modified by ci-phpunit-test |
| 235 | 235 | */ |
@@ -317,7 +317,7 @@ discard block |
||
| 317 | 317 | /** |
| 318 | 318 | * Database Loader |
| 319 | 319 | * |
| 320 | - * @param mixed $params Database configuration options |
|
| 320 | + * @param string|boolean $params Database configuration options |
|
| 321 | 321 | * @param bool $return Whether to return the database object |
| 322 | 322 | * @param bool $query_builder Whether to enable Query Builder |
| 323 | 323 | * (overrides the configuration setting) |
@@ -473,7 +473,7 @@ discard block |
||
| 473 | 473 | * An associative array or object containing values |
| 474 | 474 | * to be set, or a value's name if string |
| 475 | 475 | * @param string $val Value to set, only used if $vars is a string |
| 476 | - * @return object |
|
| 476 | + * @return CI_Loader |
|
| 477 | 477 | */ |
| 478 | 478 | public function vars($vars, $val = '') |
| 479 | 479 | { |
@@ -502,7 +502,7 @@ discard block |
||
| 502 | 502 | * |
| 503 | 503 | * Clears the cached variables. |
| 504 | 504 | * |
| 505 | - * @return object |
|
| 505 | + * @return CI_Loader |
|
| 506 | 506 | */ |
| 507 | 507 | public function clear_vars() |
| 508 | 508 | { |
@@ -545,7 +545,7 @@ discard block |
||
| 545 | 545 | * Helper Loader |
| 546 | 546 | * |
| 547 | 547 | * @param string|string[] $helpers Helper name(s) |
| 548 | - * @return object |
|
| 548 | + * @return CI_Loader |
|
| 549 | 549 | */ |
| 550 | 550 | public function helper($helpers = array()) |
| 551 | 551 | { |
@@ -616,7 +616,7 @@ discard block |
||
| 616 | 616 | * |
| 617 | 617 | * @uses CI_Loader::helper() |
| 618 | 618 | * @param string|string[] $helpers Helper name(s) |
| 619 | - * @return object |
|
| 619 | + * @return CI_Loader |
|
| 620 | 620 | */ |
| 621 | 621 | public function helpers($helpers = array()) |
| 622 | 622 | { |
@@ -632,7 +632,7 @@ discard block |
||
| 632 | 632 | * |
| 633 | 633 | * @param string|string[] $files List of language file names to load |
| 634 | 634 | * @param string Language name |
| 635 | - * @return object |
|
| 635 | + * @return CI_Loader |
|
| 636 | 636 | */ |
| 637 | 637 | public function language($files, $lang = '') |
| 638 | 638 | { |
@@ -719,7 +719,7 @@ discard block |
||
| 719 | 719 | * |
| 720 | 720 | * @param string $path Path to add |
| 721 | 721 | * @param bool $view_cascade (default: TRUE) |
| 722 | - * @return object |
|
| 722 | + * @return CI_Loader |
|
| 723 | 723 | */ |
| 724 | 724 | public function add_package_path($path, $view_cascade = TRUE) |
| 725 | 725 | { |
@@ -763,7 +763,7 @@ discard block |
||
| 763 | 763 | * added path will be removed removed. |
| 764 | 764 | * |
| 765 | 765 | * @param string $path Path to remove |
| 766 | - * @return object |
|
| 766 | + * @return CI_Loader |
|
| 767 | 767 | */ |
| 768 | 768 | public function remove_package_path($path = '') |
| 769 | 769 | { |
@@ -1051,7 +1051,7 @@ discard block |
||
| 1051 | 1051 | * @used-by CI_Loader::_ci_load_library() |
| 1052 | 1052 | * @uses CI_Loader::_ci_init_library() |
| 1053 | 1053 | * |
| 1054 | - * @param string $library Library name to load |
|
| 1054 | + * @param string $library_name Library name to load |
|
| 1055 | 1055 | * @param string $file_path Path to the library filename, relative to libraries/ |
| 1056 | 1056 | * @param mixed $params Optional parameters to pass to the class constructor |
| 1057 | 1057 | * @param string $object_name Optional object name to assign to |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | * @param string $library Library name |
| 186 | 186 | * @param array $params Optional parameters to pass to the library class constructor |
| 187 | 187 | * @param string $object_name An optional object name to assign to |
| 188 | - * @return object |
|
| 188 | + * @return CI_Loader |
|
| 189 | 189 | */ |
| 190 | 190 | public function library($library, $params = NULL, $object_name = NULL) |
| 191 | 191 | { |
@@ -229,7 +229,7 @@ discard block |
||
| 229 | 229 | * @param string $model Model name |
| 230 | 230 | * @param string $name An optional object name to assign to |
| 231 | 231 | * @param bool $db_conn An optional database connection configuration to initialize |
| 232 | - * @return object |
|
| 232 | + * @return CI_Loader |
|
| 233 | 233 | * |
| 234 | 234 | * modified by ci-phpunit-test |
| 235 | 235 | */ |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | /** |
| 332 | 332 | * Database Loader |
| 333 | 333 | * |
| 334 | - * @param mixed $params Database configuration options |
|
| 334 | + * @param string|boolean $params Database configuration options |
|
| 335 | 335 | * @param bool $return Whether to return the database object |
| 336 | 336 | * @param bool $query_builder Whether to enable Query Builder |
| 337 | 337 | * (overrides the configuration setting) |
@@ -487,7 +487,7 @@ discard block |
||
| 487 | 487 | * An associative array or object containing values |
| 488 | 488 | * to be set, or a value's name if string |
| 489 | 489 | * @param string $val Value to set, only used if $vars is a string |
| 490 | - * @return object |
|
| 490 | + * @return CI_Loader |
|
| 491 | 491 | */ |
| 492 | 492 | public function vars($vars, $val = '') |
| 493 | 493 | { |
@@ -559,7 +559,7 @@ discard block |
||
| 559 | 559 | * Helper Loader |
| 560 | 560 | * |
| 561 | 561 | * @param string|string[] $helpers Helper name(s) |
| 562 | - * @return object |
|
| 562 | + * @return CI_Loader |
|
| 563 | 563 | */ |
| 564 | 564 | public function helper($helpers = array()) |
| 565 | 565 | { |
@@ -630,7 +630,7 @@ discard block |
||
| 630 | 630 | * |
| 631 | 631 | * @uses CI_Loader::helper() |
| 632 | 632 | * @param string|string[] $helpers Helper name(s) |
| 633 | - * @return object |
|
| 633 | + * @return CI_Loader |
|
| 634 | 634 | */ |
| 635 | 635 | public function helpers($helpers = array()) |
| 636 | 636 | { |
@@ -646,7 +646,7 @@ discard block |
||
| 646 | 646 | * |
| 647 | 647 | * @param string|string[] $files List of language file names to load |
| 648 | 648 | * @param string Language name |
| 649 | - * @return object |
|
| 649 | + * @return CI_Loader |
|
| 650 | 650 | */ |
| 651 | 651 | public function language($files, $lang = '') |
| 652 | 652 | { |
@@ -733,7 +733,7 @@ discard block |
||
| 733 | 733 | * |
| 734 | 734 | * @param string $path Path to add |
| 735 | 735 | * @param bool $view_cascade (default: TRUE) |
| 736 | - * @return object |
|
| 736 | + * @return CI_Loader |
|
| 737 | 737 | */ |
| 738 | 738 | public function add_package_path($path, $view_cascade = TRUE) |
| 739 | 739 | { |
@@ -777,7 +777,7 @@ discard block |
||
| 777 | 777 | * added path will be removed removed. |
| 778 | 778 | * |
| 779 | 779 | * @param string $path Path to remove |
| 780 | - * @return object |
|
| 780 | + * @return CI_Loader |
|
| 781 | 781 | */ |
| 782 | 782 | public function remove_package_path($path = '') |
| 783 | 783 | { |
@@ -1065,7 +1065,7 @@ discard block |
||
| 1065 | 1065 | * @used-by CI_Loader::_ci_load_library() |
| 1066 | 1066 | * @uses CI_Loader::_ci_init_library() |
| 1067 | 1067 | * |
| 1068 | - * @param string $library Library name to load |
|
| 1068 | + * @param string $library_name Library name to load |
|
| 1069 | 1069 | * @param string $file_path Path to the library filename, relative to libraries/ |
| 1070 | 1070 | * @param mixed $params Optional parameters to pass to the class constructor |
| 1071 | 1071 | * @param string $object_name Optional object name to assign to |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | * @param string $library Library name |
| 186 | 186 | * @param array $params Optional parameters to pass to the library class constructor |
| 187 | 187 | * @param string $object_name An optional object name to assign to |
| 188 | - * @return object |
|
| 188 | + * @return CI_Loader |
|
| 189 | 189 | */ |
| 190 | 190 | public function library($library, $params = NULL, $object_name = NULL) |
| 191 | 191 | { |
@@ -229,7 +229,7 @@ discard block |
||
| 229 | 229 | * @param string $model Model name |
| 230 | 230 | * @param string $name An optional object name to assign to |
| 231 | 231 | * @param bool $db_conn An optional database connection configuration to initialize |
| 232 | - * @return object |
|
| 232 | + * @return CI_Loader |
|
| 233 | 233 | * |
| 234 | 234 | * modified by ci-phpunit-test |
| 235 | 235 | */ |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | /** |
| 332 | 332 | * Database Loader |
| 333 | 333 | * |
| 334 | - * @param mixed $params Database configuration options |
|
| 334 | + * @param string|boolean $params Database configuration options |
|
| 335 | 335 | * @param bool $return Whether to return the database object |
| 336 | 336 | * @param bool $query_builder Whether to enable Query Builder |
| 337 | 337 | * (overrides the configuration setting) |
@@ -487,7 +487,7 @@ discard block |
||
| 487 | 487 | * An associative array or object containing values |
| 488 | 488 | * to be set, or a value's name if string |
| 489 | 489 | * @param string $val Value to set, only used if $vars is a string |
| 490 | - * @return object |
|
| 490 | + * @return CI_Loader |
|
| 491 | 491 | */ |
| 492 | 492 | public function vars($vars, $val = '') |
| 493 | 493 | { |
@@ -559,7 +559,7 @@ discard block |
||
| 559 | 559 | * Helper Loader |
| 560 | 560 | * |
| 561 | 561 | * @param string|string[] $helpers Helper name(s) |
| 562 | - * @return object |
|
| 562 | + * @return CI_Loader |
|
| 563 | 563 | */ |
| 564 | 564 | public function helper($helpers = array()) |
| 565 | 565 | { |
@@ -630,7 +630,7 @@ discard block |
||
| 630 | 630 | * |
| 631 | 631 | * @uses CI_Loader::helper() |
| 632 | 632 | * @param string|string[] $helpers Helper name(s) |
| 633 | - * @return object |
|
| 633 | + * @return CI_Loader |
|
| 634 | 634 | */ |
| 635 | 635 | public function helpers($helpers = array()) |
| 636 | 636 | { |
@@ -646,7 +646,7 @@ discard block |
||
| 646 | 646 | * |
| 647 | 647 | * @param string|string[] $files List of language file names to load |
| 648 | 648 | * @param string Language name |
| 649 | - * @return object |
|
| 649 | + * @return CI_Loader |
|
| 650 | 650 | */ |
| 651 | 651 | public function language($files, $lang = '') |
| 652 | 652 | { |
@@ -733,7 +733,7 @@ discard block |
||
| 733 | 733 | * |
| 734 | 734 | * @param string $path Path to add |
| 735 | 735 | * @param bool $view_cascade (default: TRUE) |
| 736 | - * @return object |
|
| 736 | + * @return CI_Loader |
|
| 737 | 737 | */ |
| 738 | 738 | public function add_package_path($path, $view_cascade = TRUE) |
| 739 | 739 | { |
@@ -777,7 +777,7 @@ discard block |
||
| 777 | 777 | * added path will be removed removed. |
| 778 | 778 | * |
| 779 | 779 | * @param string $path Path to remove |
| 780 | - * @return object |
|
| 780 | + * @return CI_Loader |
|
| 781 | 781 | */ |
| 782 | 782 | public function remove_package_path($path = '') |
| 783 | 783 | { |
@@ -1065,7 +1065,7 @@ discard block |
||
| 1065 | 1065 | * @used-by CI_Loader::_ci_load_library() |
| 1066 | 1066 | * @uses CI_Loader::_ci_init_library() |
| 1067 | 1067 | * |
| 1068 | - * @param string $library Library name to load |
|
| 1068 | + * @param string $library_name Library name to load |
|
| 1069 | 1069 | * @param string $file_path Path to the library filename, relative to libraries/ |
| 1070 | 1070 | * @param mixed $params Optional parameters to pass to the class constructor |
| 1071 | 1071 | * @param string $object_name Optional object name to assign to |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | * @param string $library Library name |
| 186 | 186 | * @param array $params Optional parameters to pass to the library class constructor |
| 187 | 187 | * @param string $object_name An optional object name to assign to |
| 188 | - * @return object |
|
| 188 | + * @return CI_Loader |
|
| 189 | 189 | */ |
| 190 | 190 | public function library($library, $params = NULL, $object_name = NULL) |
| 191 | 191 | { |
@@ -229,7 +229,7 @@ discard block |
||
| 229 | 229 | * @param string $model Model name |
| 230 | 230 | * @param string $name An optional object name to assign to |
| 231 | 231 | * @param bool $db_conn An optional database connection configuration to initialize |
| 232 | - * @return object |
|
| 232 | + * @return CI_Loader |
|
| 233 | 233 | * |
| 234 | 234 | * modified by ci-phpunit-test |
| 235 | 235 | */ |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | /** |
| 332 | 332 | * Database Loader |
| 333 | 333 | * |
| 334 | - * @param mixed $params Database configuration options |
|
| 334 | + * @param string|boolean $params Database configuration options |
|
| 335 | 335 | * @param bool $return Whether to return the database object |
| 336 | 336 | * @param bool $query_builder Whether to enable Query Builder |
| 337 | 337 | * (overrides the configuration setting) |
@@ -487,7 +487,7 @@ discard block |
||
| 487 | 487 | * An associative array or object containing values |
| 488 | 488 | * to be set, or a value's name if string |
| 489 | 489 | * @param string $val Value to set, only used if $vars is a string |
| 490 | - * @return object |
|
| 490 | + * @return CI_Loader |
|
| 491 | 491 | */ |
| 492 | 492 | public function vars($vars, $val = '') |
| 493 | 493 | { |
@@ -559,7 +559,7 @@ discard block |
||
| 559 | 559 | * Helper Loader |
| 560 | 560 | * |
| 561 | 561 | * @param string|string[] $helpers Helper name(s) |
| 562 | - * @return object |
|
| 562 | + * @return CI_Loader |
|
| 563 | 563 | */ |
| 564 | 564 | public function helper($helpers = array()) |
| 565 | 565 | { |
@@ -630,7 +630,7 @@ discard block |
||
| 630 | 630 | * |
| 631 | 631 | * @uses CI_Loader::helper() |
| 632 | 632 | * @param string|string[] $helpers Helper name(s) |
| 633 | - * @return object |
|
| 633 | + * @return CI_Loader |
|
| 634 | 634 | */ |
| 635 | 635 | public function helpers($helpers = array()) |
| 636 | 636 | { |
@@ -646,7 +646,7 @@ discard block |
||
| 646 | 646 | * |
| 647 | 647 | * @param string|string[] $files List of language file names to load |
| 648 | 648 | * @param string Language name |
| 649 | - * @return object |
|
| 649 | + * @return CI_Loader |
|
| 650 | 650 | */ |
| 651 | 651 | public function language($files, $lang = '') |
| 652 | 652 | { |
@@ -733,7 +733,7 @@ discard block |
||
| 733 | 733 | * |
| 734 | 734 | * @param string $path Path to add |
| 735 | 735 | * @param bool $view_cascade (default: TRUE) |
| 736 | - * @return object |
|
| 736 | + * @return CI_Loader |
|
| 737 | 737 | */ |
| 738 | 738 | public function add_package_path($path, $view_cascade = TRUE) |
| 739 | 739 | { |
@@ -777,7 +777,7 @@ discard block |
||
| 777 | 777 | * added path will be removed removed. |
| 778 | 778 | * |
| 779 | 779 | * @param string $path Path to remove |
| 780 | - * @return object |
|
| 780 | + * @return CI_Loader |
|
| 781 | 781 | */ |
| 782 | 782 | public function remove_package_path($path = '') |
| 783 | 783 | { |
@@ -1065,7 +1065,7 @@ discard block |
||
| 1065 | 1065 | * @used-by CI_Loader::_ci_load_library() |
| 1066 | 1066 | * @uses CI_Loader::_ci_init_library() |
| 1067 | 1067 | * |
| 1068 | - * @param string $library Library name to load |
|
| 1068 | + * @param string $library_name Library name to load |
|
| 1069 | 1069 | * @param string $file_path Path to the library filename, relative to libraries/ |
| 1070 | 1070 | * @param mixed $params Optional parameters to pass to the class constructor |
| 1071 | 1071 | * @param string $object_name Optional object name to assign to |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | * @param string $library Library name |
| 186 | 186 | * @param array $params Optional parameters to pass to the library class constructor |
| 187 | 187 | * @param string $object_name An optional object name to assign to |
| 188 | - * @return object |
|
| 188 | + * @return CI_Loader |
|
| 189 | 189 | */ |
| 190 | 190 | public function library($library, $params = NULL, $object_name = NULL) |
| 191 | 191 | { |
@@ -229,7 +229,7 @@ discard block |
||
| 229 | 229 | * @param string $model Model name |
| 230 | 230 | * @param string $name An optional object name to assign to |
| 231 | 231 | * @param bool $db_conn An optional database connection configuration to initialize |
| 232 | - * @return object |
|
| 232 | + * @return CI_Loader |
|
| 233 | 233 | * |
| 234 | 234 | * modified by ci-phpunit-test |
| 235 | 235 | */ |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | /** |
| 332 | 332 | * Database Loader |
| 333 | 333 | * |
| 334 | - * @param mixed $params Database configuration options |
|
| 334 | + * @param string|boolean $params Database configuration options |
|
| 335 | 335 | * @param bool $return Whether to return the database object |
| 336 | 336 | * @param bool $query_builder Whether to enable Query Builder |
| 337 | 337 | * (overrides the configuration setting) |
@@ -487,7 +487,7 @@ discard block |
||
| 487 | 487 | * An associative array or object containing values |
| 488 | 488 | * to be set, or a value's name if string |
| 489 | 489 | * @param string $val Value to set, only used if $vars is a string |
| 490 | - * @return object |
|
| 490 | + * @return CI_Loader |
|
| 491 | 491 | */ |
| 492 | 492 | public function vars($vars, $val = '') |
| 493 | 493 | { |
@@ -559,7 +559,7 @@ discard block |
||
| 559 | 559 | * Helper Loader |
| 560 | 560 | * |
| 561 | 561 | * @param string|string[] $helpers Helper name(s) |
| 562 | - * @return object |
|
| 562 | + * @return CI_Loader |
|
| 563 | 563 | */ |
| 564 | 564 | public function helper($helpers = array()) |
| 565 | 565 | { |
@@ -630,7 +630,7 @@ discard block |
||
| 630 | 630 | * |
| 631 | 631 | * @uses CI_Loader::helper() |
| 632 | 632 | * @param string|string[] $helpers Helper name(s) |
| 633 | - * @return object |
|
| 633 | + * @return CI_Loader |
|
| 634 | 634 | */ |
| 635 | 635 | public function helpers($helpers = array()) |
| 636 | 636 | { |
@@ -646,7 +646,7 @@ discard block |
||
| 646 | 646 | * |
| 647 | 647 | * @param string|string[] $files List of language file names to load |
| 648 | 648 | * @param string Language name |
| 649 | - * @return object |
|
| 649 | + * @return CI_Loader |
|
| 650 | 650 | */ |
| 651 | 651 | public function language($files, $lang = '') |
| 652 | 652 | { |
@@ -733,7 +733,7 @@ discard block |
||
| 733 | 733 | * |
| 734 | 734 | * @param string $path Path to add |
| 735 | 735 | * @param bool $view_cascade (default: TRUE) |
| 736 | - * @return object |
|
| 736 | + * @return CI_Loader |
|
| 737 | 737 | */ |
| 738 | 738 | public function add_package_path($path, $view_cascade = TRUE) |
| 739 | 739 | { |
@@ -777,7 +777,7 @@ discard block |
||
| 777 | 777 | * added path will be removed removed. |
| 778 | 778 | * |
| 779 | 779 | * @param string $path Path to remove |
| 780 | - * @return object |
|
| 780 | + * @return CI_Loader |
|
| 781 | 781 | */ |
| 782 | 782 | public function remove_package_path($path = '') |
| 783 | 783 | { |
@@ -1065,7 +1065,7 @@ discard block |
||
| 1065 | 1065 | * @used-by CI_Loader::_ci_load_library() |
| 1066 | 1066 | * @uses CI_Loader::_ci_init_library() |
| 1067 | 1067 | * |
| 1068 | - * @param string $library Library name to load |
|
| 1068 | + * @param string $library_name Library name to load |
|
| 1069 | 1069 | * @param string $file_path Path to the library filename, relative to libraries/ |
| 1070 | 1070 | * @param mixed $params Optional parameters to pass to the class constructor |
| 1071 | 1071 | * @param string $object_name Optional object name to assign to |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | * @param string $library Library name |
| 186 | 186 | * @param array $params Optional parameters to pass to the library class constructor |
| 187 | 187 | * @param string $object_name An optional object name to assign to |
| 188 | - * @return object |
|
| 188 | + * @return CI_Loader |
|
| 189 | 189 | */ |
| 190 | 190 | public function library($library, $params = NULL, $object_name = NULL) |
| 191 | 191 | { |
@@ -229,7 +229,7 @@ discard block |
||
| 229 | 229 | * @param string $model Model name |
| 230 | 230 | * @param string $name An optional object name to assign to |
| 231 | 231 | * @param bool $db_conn An optional database connection configuration to initialize |
| 232 | - * @return object |
|
| 232 | + * @return CI_Loader |
|
| 233 | 233 | * |
| 234 | 234 | * modified by ci-phpunit-test |
| 235 | 235 | */ |
@@ -361,7 +361,7 @@ discard block |
||
| 361 | 361 | /** |
| 362 | 362 | * Database Loader |
| 363 | 363 | * |
| 364 | - * @param mixed $params Database configuration options |
|
| 364 | + * @param string|boolean $params Database configuration options |
|
| 365 | 365 | * @param bool $return Whether to return the database object |
| 366 | 366 | * @param bool $query_builder Whether to enable Query Builder |
| 367 | 367 | * (overrides the configuration setting) |
@@ -517,7 +517,7 @@ discard block |
||
| 517 | 517 | * An associative array or object containing values |
| 518 | 518 | * to be set, or a value's name if string |
| 519 | 519 | * @param string $val Value to set, only used if $vars is a string |
| 520 | - * @return object |
|
| 520 | + * @return CI_Loader |
|
| 521 | 521 | */ |
| 522 | 522 | public function vars($vars, $val = '') |
| 523 | 523 | { |
@@ -589,7 +589,7 @@ discard block |
||
| 589 | 589 | * Helper Loader |
| 590 | 590 | * |
| 591 | 591 | * @param string|string[] $helpers Helper name(s) |
| 592 | - * @return object |
|
| 592 | + * @return CI_Loader |
|
| 593 | 593 | */ |
| 594 | 594 | public function helper($helpers = array()) |
| 595 | 595 | { |
@@ -660,7 +660,7 @@ discard block |
||
| 660 | 660 | * |
| 661 | 661 | * @uses CI_Loader::helper() |
| 662 | 662 | * @param string|string[] $helpers Helper name(s) |
| 663 | - * @return object |
|
| 663 | + * @return CI_Loader |
|
| 664 | 664 | */ |
| 665 | 665 | public function helpers($helpers = array()) |
| 666 | 666 | { |
@@ -676,7 +676,7 @@ discard block |
||
| 676 | 676 | * |
| 677 | 677 | * @param string|string[] $files List of language file names to load |
| 678 | 678 | * @param string Language name |
| 679 | - * @return object |
|
| 679 | + * @return CI_Loader |
|
| 680 | 680 | */ |
| 681 | 681 | public function language($files, $lang = '') |
| 682 | 682 | { |
@@ -770,7 +770,7 @@ discard block |
||
| 770 | 770 | * |
| 771 | 771 | * @param string $path Path to add |
| 772 | 772 | * @param bool $view_cascade (default: TRUE) |
| 773 | - * @return object |
|
| 773 | + * @return CI_Loader |
|
| 774 | 774 | */ |
| 775 | 775 | public function add_package_path($path, $view_cascade = TRUE) |
| 776 | 776 | { |
@@ -814,7 +814,7 @@ discard block |
||
| 814 | 814 | * added path will be removed removed. |
| 815 | 815 | * |
| 816 | 816 | * @param string $path Path to remove |
| 817 | - * @return object |
|
| 817 | + * @return CI_Loader |
|
| 818 | 818 | */ |
| 819 | 819 | public function remove_package_path($path = '') |
| 820 | 820 | { |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | * @param string $library Library name |
| 192 | 192 | * @param array $params Optional parameters to pass to the library class constructor |
| 193 | 193 | * @param string $object_name An optional object name to assign to |
| 194 | - * @return object |
|
| 194 | + * @return CI_Loader |
|
| 195 | 195 | * |
| 196 | 196 | * @codeCoverageIgnore |
| 197 | 197 | */ |
@@ -237,7 +237,7 @@ discard block |
||
| 237 | 237 | * @param string $model Model name |
| 238 | 238 | * @param string $name An optional object name to assign to |
| 239 | 239 | * @param bool $db_conn An optional database connection configuration to initialize |
| 240 | - * @return object |
|
| 240 | + * @return CI_Loader |
|
| 241 | 241 | * |
| 242 | 242 | * modified by ci-phpunit-test |
| 243 | 243 | */ |
@@ -369,7 +369,7 @@ discard block |
||
| 369 | 369 | /** |
| 370 | 370 | * Database Loader |
| 371 | 371 | * |
| 372 | - * @param mixed $params Database configuration options |
|
| 372 | + * @param string|boolean $params Database configuration options |
|
| 373 | 373 | * @param bool $return Whether to return the database object |
| 374 | 374 | * @param bool $query_builder Whether to enable Query Builder |
| 375 | 375 | * (overrides the configuration setting) |
@@ -535,7 +535,7 @@ discard block |
||
| 535 | 535 | * An associative array or object containing values |
| 536 | 536 | * to be set, or a value's name if string |
| 537 | 537 | * @param string $val Value to set, only used if $vars is a string |
| 538 | - * @return object |
|
| 538 | + * @return CI_Loader |
|
| 539 | 539 | * |
| 540 | 540 | * @codeCoverageIgnore |
| 541 | 541 | */ |
@@ -609,7 +609,7 @@ discard block |
||
| 609 | 609 | * Helper Loader |
| 610 | 610 | * |
| 611 | 611 | * @param string|string[] $helpers Helper name(s) |
| 612 | - * @return object |
|
| 612 | + * @return CI_Loader |
|
| 613 | 613 | * |
| 614 | 614 | * @codeCoverageIgnore |
| 615 | 615 | */ |
@@ -688,7 +688,7 @@ discard block |
||
| 688 | 688 | * |
| 689 | 689 | * @uses CI_Loader::helper() |
| 690 | 690 | * @param string|string[] $helpers Helper name(s) |
| 691 | - * @return object |
|
| 691 | + * @return CI_Loader |
|
| 692 | 692 | * |
| 693 | 693 | * @codeCoverageIgnore |
| 694 | 694 | */ |
@@ -706,7 +706,7 @@ discard block |
||
| 706 | 706 | * |
| 707 | 707 | * @param string|string[] $files List of language file names to load |
| 708 | 708 | * @param string Language name |
| 709 | - * @return object |
|
| 709 | + * @return CI_Loader |
|
| 710 | 710 | * |
| 711 | 711 | * @codeCoverageIgnore |
| 712 | 712 | */ |
@@ -806,7 +806,7 @@ discard block |
||
| 806 | 806 | * |
| 807 | 807 | * @param string $path Path to add |
| 808 | 808 | * @param bool $view_cascade (default: TRUE) |
| 809 | - * @return object |
|
| 809 | + * @return CI_Loader |
|
| 810 | 810 | * |
| 811 | 811 | * @codeCoverageIgnore |
| 812 | 812 | */ |
@@ -854,7 +854,7 @@ discard block |
||
| 854 | 854 | * added path will be removed removed. |
| 855 | 855 | * |
| 856 | 856 | * @param string $path Path to remove |
| 857 | - * @return object |
|
| 857 | + * @return CI_Loader |
|
| 858 | 858 | * |
| 859 | 859 | * @codeCoverageIgnore |
| 860 | 860 | */ |