@@ -136,6 +136,11 @@ discard block |
||
136 | 136 | return $_is_loaded; |
137 | 137 | } |
138 | 138 | |
139 | +/** |
|
140 | + * @param boolean $return |
|
141 | + * |
|
142 | + * @return boolean |
|
143 | + */ |
|
139 | 144 | function is_cli($return = null) |
140 | 145 | { |
141 | 146 | static $_return = TRUE; |
@@ -148,6 +153,9 @@ discard block |
||
148 | 153 | return $_return; |
149 | 154 | } |
150 | 155 | |
156 | +/** |
|
157 | + * @param string $message |
|
158 | + */ |
|
151 | 159 | function show_error($message, $status_code = 500, $heading = 'An Error Was Encountered') |
152 | 160 | { |
153 | 161 | $status_code = abs($status_code); |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | /** |
238 | 238 | * Fetch an item from the GET array |
239 | 239 | * |
240 | - * @param mixed $index Index for item to be fetched from $_GET |
|
240 | + * @param string $index Index for item to be fetched from $_GET |
|
241 | 241 | * @param bool $xss_clean Whether to apply XSS filtering |
242 | 242 | * @return mixed |
243 | 243 | * |
@@ -253,7 +253,7 @@ discard block |
||
253 | 253 | /** |
254 | 254 | * Fetch an item from the POST array |
255 | 255 | * |
256 | - * @param mixed $index Index for item to be fetched from $_POST |
|
256 | + * @param string $index Index for item to be fetched from $_POST |
|
257 | 257 | * @param bool $xss_clean Whether to apply XSS filtering |
258 | 258 | * @return mixed |
259 | 259 | * |
@@ -321,9 +321,9 @@ discard block |
||
321 | 321 | /** |
322 | 322 | * Fetch an item from the SERVER array |
323 | 323 | * |
324 | - * @param mixed $index Index for item to be fetched from $_SERVER |
|
324 | + * @param string $index Index for item to be fetched from $_SERVER |
|
325 | 325 | * @param bool $xss_clean Whether to apply XSS filtering |
326 | - * @return mixed |
|
326 | + * @return string |
|
327 | 327 | * |
328 | 328 | * @codeCoverageIgnore |
329 | 329 | */ |
@@ -934,7 +934,7 @@ discard block |
||
934 | 934 | * Allows read access to protected properties |
935 | 935 | * |
936 | 936 | * @param string $name |
937 | - * @return mixed |
|
937 | + * @return string|null |
|
938 | 938 | * |
939 | 939 | * @codeCoverageIgnore |
940 | 940 | */ |
@@ -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 | */ |
@@ -136,6 +136,11 @@ discard block |
||
136 | 136 | return $_is_loaded; |
137 | 137 | } |
138 | 138 | |
139 | +/** |
|
140 | + * @param boolean $return |
|
141 | + * |
|
142 | + * @return boolean |
|
143 | + */ |
|
139 | 144 | function is_cli($return = null) |
140 | 145 | { |
141 | 146 | static $_return = TRUE; |
@@ -148,6 +153,9 @@ discard block |
||
148 | 153 | return $_return; |
149 | 154 | } |
150 | 155 | |
156 | +/** |
|
157 | + * @param string $message |
|
158 | + */ |
|
151 | 159 | function show_error($message, $status_code = 500, $heading = 'An Error Was Encountered') |
152 | 160 | { |
153 | 161 | $status_code = abs($status_code); |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | /** |
238 | 238 | * Fetch an item from the GET array |
239 | 239 | * |
240 | - * @param mixed $index Index for item to be fetched from $_GET |
|
240 | + * @param string $index Index for item to be fetched from $_GET |
|
241 | 241 | * @param bool $xss_clean Whether to apply XSS filtering |
242 | 242 | * @return mixed |
243 | 243 | * |
@@ -253,7 +253,7 @@ discard block |
||
253 | 253 | /** |
254 | 254 | * Fetch an item from the POST array |
255 | 255 | * |
256 | - * @param mixed $index Index for item to be fetched from $_POST |
|
256 | + * @param string $index Index for item to be fetched from $_POST |
|
257 | 257 | * @param bool $xss_clean Whether to apply XSS filtering |
258 | 258 | * @return mixed |
259 | 259 | * |
@@ -321,9 +321,9 @@ discard block |
||
321 | 321 | /** |
322 | 322 | * Fetch an item from the SERVER array |
323 | 323 | * |
324 | - * @param mixed $index Index for item to be fetched from $_SERVER |
|
324 | + * @param string $index Index for item to be fetched from $_SERVER |
|
325 | 325 | * @param bool $xss_clean Whether to apply XSS filtering |
326 | - * @return mixed |
|
326 | + * @return string |
|
327 | 327 | * |
328 | 328 | * @codeCoverageIgnore |
329 | 329 | */ |
@@ -934,7 +934,7 @@ discard block |
||
934 | 934 | * Allows read access to protected properties |
935 | 935 | * |
936 | 936 | * @param string $name |
937 | - * @return mixed |
|
937 | + * @return string|null |
|
938 | 938 | * |
939 | 939 | * @codeCoverageIgnore |
940 | 940 | */ |
@@ -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 | */ |
@@ -84,6 +84,9 @@ discard block |
||
84 | 84 | $this->node_visitor = new NodeVisitor(); |
85 | 85 | } |
86 | 86 | |
87 | + /** |
|
88 | + * @param string $error_msg |
|
89 | + */ |
|
87 | 90 | protected static function checkLock($error_msg) |
88 | 91 | { |
89 | 92 | if (self::$lock_function_list) |
@@ -110,6 +113,9 @@ discard block |
||
110 | 113 | return self::$whitelist; |
111 | 114 | } |
112 | 115 | |
116 | + /** |
|
117 | + * @param string $function_name |
|
118 | + */ |
|
113 | 119 | public static function addBlacklist($function_name) |
114 | 120 | { |
115 | 121 | self::checkLock("You can't add to blacklist after initialization"); |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | * @param mixed $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 mixed $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 | */ |
@@ -375,7 +375,7 @@ discard block |
||
375 | 375 | /** |
376 | 376 | * Database Loader |
377 | 377 | * |
378 | - * @param mixed $params Database configuration options |
|
378 | + * @param string|boolean $params Database configuration options |
|
379 | 379 | * @param bool $return Whether to return the database object |
380 | 380 | * @param bool $query_builder Whether to enable Query Builder |
381 | 381 | * (overrides the configuration setting) |
@@ -539,7 +539,7 @@ discard block |
||
539 | 539 | * An associative array or object containing values |
540 | 540 | * to be set, or a value's name if string |
541 | 541 | * @param string $val Value to set, only used if $vars is a string |
542 | - * @return object |
|
542 | + * @return CI_Loader |
|
543 | 543 | * |
544 | 544 | * @codeCoverageIgnore |
545 | 545 | */ |
@@ -613,7 +613,7 @@ discard block |
||
613 | 613 | * Helper Loader |
614 | 614 | * |
615 | 615 | * @param string|string[] $helpers Helper name(s) |
616 | - * @return object |
|
616 | + * @return CI_Loader |
|
617 | 617 | * |
618 | 618 | * @codeCoverageIgnore |
619 | 619 | */ |
@@ -692,7 +692,7 @@ discard block |
||
692 | 692 | * |
693 | 693 | * @uses CI_Loader::helper() |
694 | 694 | * @param string|string[] $helpers Helper name(s) |
695 | - * @return object |
|
695 | + * @return CI_Loader |
|
696 | 696 | * |
697 | 697 | * @codeCoverageIgnore |
698 | 698 | */ |
@@ -710,7 +710,7 @@ discard block |
||
710 | 710 | * |
711 | 711 | * @param string|string[] $files List of language file names to load |
712 | 712 | * @param string Language name |
713 | - * @return object |
|
713 | + * @return CI_Loader |
|
714 | 714 | * |
715 | 715 | * @codeCoverageIgnore |
716 | 716 | */ |
@@ -810,7 +810,7 @@ discard block |
||
810 | 810 | * |
811 | 811 | * @param string $path Path to add |
812 | 812 | * @param bool $view_cascade (default: TRUE) |
813 | - * @return object |
|
813 | + * @return CI_Loader |
|
814 | 814 | * |
815 | 815 | * @codeCoverageIgnore |
816 | 816 | */ |
@@ -858,7 +858,7 @@ discard block |
||
858 | 858 | * added path will be removed removed. |
859 | 859 | * |
860 | 860 | * @param string $path Path to remove |
861 | - * @return object |
|
861 | + * @return CI_Loader |
|
862 | 862 | * |
863 | 863 | * @codeCoverageIgnore |
864 | 864 | */ |
@@ -136,6 +136,11 @@ discard block |
||
136 | 136 | return $_is_loaded; |
137 | 137 | } |
138 | 138 | |
139 | +/** |
|
140 | + * @param boolean $return |
|
141 | + * |
|
142 | + * @return boolean |
|
143 | + */ |
|
139 | 144 | function is_cli($return = null) |
140 | 145 | { |
141 | 146 | static $_return = TRUE; |
@@ -148,6 +153,9 @@ discard block |
||
148 | 153 | return $_return; |
149 | 154 | } |
150 | 155 | |
156 | +/** |
|
157 | + * @param string $message |
|
158 | + */ |
|
151 | 159 | function show_error($message, $status_code = 500, $heading = 'An Error Was Encountered') |
152 | 160 | { |
153 | 161 | $status_code = abs($status_code); |