Completed
Pull Request — master (#364)
by Kenji
02:19
created
application/tests/_ci_phpunit_test/replacing/core/old/3.1.0-Loader.php 1 patch
Doc Comments   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 	{
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/replacing/core/old/3.1.2-Common.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -136,6 +136,11 @@  discard block
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/replacing/core/old/3.1.2-Input.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 	 */
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/replacing/core/old/3.1.2-Loader.php 1 patch
Doc Comments   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 	 */
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/replacing/core/old/3.1.3-Common.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -136,6 +136,11 @@  discard block
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/replacing/core/old/3.1.3-Input.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 	 */
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/replacing/core/old/3.1.3-Loader.php 1 patch
Doc Comments   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 	 */
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/replacing/core/old/3.1.4-Common.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -136,6 +136,11 @@  discard block
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/replacing/core/old/3.1.4-Input.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 	 */
Please login to merge, or discard this patch.