Completed
Branch v3.0 (3d1631)
by Samir
15:14
created
web_interface/astpp/system/database/drivers/cubrid/cubrid_utility.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 	 * List databases
29 29
 	 *
30 30
 	 * @access	private
31
-	 * @return	array
31
+	 * @return	string|false
32 32
 	 */
33 33
 	function _list_databases()
34 34
 	{
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 	 *
57 57
 	 * @access	private
58 58
 	 * @param	string	the table name
59
-	 * @return	object
59
+	 * @return	boolean
60 60
 	 * @link 	http://www.cubrid.org/manual/840/en/Optimize%20Database
61 61
 	 */
62 62
 	function _optimize_table($table)
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 	 *
77 77
 	 * @access	private
78 78
 	 * @param	string	the table name
79
-	 * @return	object
79
+	 * @return	boolean
80 80
 	 * @link 	http://www.cubrid.org/manual/840/en/Checking%20Database%20Consistency
81 81
 	 */
82 82
 	function _repair_table($table)
Please login to merge, or discard this patch.
web_interface/astpp/system/database/drivers/mssql/mssql_driver.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 	 * @access	public
121 121
 	 * @param	string
122 122
 	 * @param	string
123
-	 * @return	resource
123
+	 * @return	boolean
124 124
 	 */
125 125
 	function db_set_charset($charset, $collation)
126 126
 	{
@@ -319,7 +319,7 @@  discard block
 block discarded – undo
319 319
 	*
320 320
 	* @access private
321 321
 	* @param string $version
322
-	* @return int16 major version number
322
+	* @return string major version number
323 323
 	*/
324 324
 	function _parse_major_version($version)
325 325
 	{
@@ -350,7 +350,7 @@  discard block
 block discarded – undo
350 350
 	 *
351 351
 	 * @access	public
352 352
 	 * @param	string
353
-	 * @return	string
353
+	 * @return	integer
354 354
 	 */
355 355
 	function count_all($table = '')
356 356
 	{
@@ -421,7 +421,7 @@  discard block
 block discarded – undo
421 421
 	 *
422 422
 	 * @access	public
423 423
 	 * @param	string	the table name
424
-	 * @return	object
424
+	 * @return	string
425 425
 	 */
426 426
 	function _field_data($table)
427 427
 	{
@@ -447,7 +447,7 @@  discard block
 block discarded – undo
447 447
 	 * The error message number
448 448
 	 *
449 449
 	 * @access	private
450
-	 * @return	integer
450
+	 * @return	string
451 451
 	 */
452 452
 	function _error_number()
453 453
 	{
@@ -507,7 +507,7 @@  discard block
 block discarded – undo
507 507
 	 *
508 508
 	 * @access	public
509 509
 	 * @param	type
510
-	 * @return	type
510
+	 * @return	string
511 511
 	 */
512 512
 	function _from_tables($tables)
513 513
 	{
Please login to merge, or discard this patch.
web_interface/astpp/system/database/drivers/mssql/mssql_forge.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 *
30 30
 	 * @access	private
31 31
 	 * @param	string	the database name
32
-	 * @return	bool
32
+	 * @return	string
33 33
 	 */
34 34
 	function _create_database($name)
35 35
 	{
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 	 *
44 44
 	 * @access	private
45 45
 	 * @param	string	the database name
46
-	 * @return	bool
46
+	 * @return	string
47 47
 	 */
48 48
 	function _drop_database($name)
49 49
 	{
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 	 * Drop Table
57 57
 	 *
58 58
 	 * @access	private
59
-	 * @return	bool
59
+	 * @return	string
60 60
 	 */
61 61
 	function _drop_table($table)
62 62
 	{
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 	 * @param	mixed	primary key(s)
75 75
 	 * @param	mixed	key(s)
76 76
 	 * @param	boolean	should 'IF NOT EXISTS' be added to the SQL
77
-	 * @return	bool
77
+	 * @return	string
78 78
 	 */
79 79
 	function _create_table($table, $fields, $primary_keys, $keys, $if_not_exists)
80 80
 	{
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
 	 * @param	string	the default value
187 187
 	 * @param	boolean	should 'NOT NULL' be added
188 188
 	 * @param	string	the field after which we should add the new field
189
-	 * @return	object
189
+	 * @return	string
190 190
 	 */
191 191
 	function _alter_table($alter_type, $table, $column_name, $column_definition = '', $default_value = '', $null = '', $after_field = '')
192 192
 	{
Please login to merge, or discard this patch.
web_interface/astpp/system/database/drivers/mssql/mssql_result.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
 	 * result set starts at zero
126 126
 	 *
127 127
 	 * @access	private
128
-	 * @return	array
128
+	 * @return	boolean
129 129
 	 */
130 130
 	function _data_seek($n = 0)
131 131
 	{
Please login to merge, or discard this patch.
web_interface/astpp/system/database/drivers/mssql/mssql_utility.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 	 * List databases
29 29
 	 *
30 30
 	 * @access	private
31
-	 * @return	bool
31
+	 * @return	string
32 32
 	 */
33 33
 	function _list_databases()
34 34
 	{
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	 *
45 45
 	 * @access	private
46 46
 	 * @param	string	the table name
47
-	 * @return	object
47
+	 * @return	boolean
48 48
 	 */
49 49
 	function _optimize_table($table)
50 50
 	{
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 	 *
61 61
 	 * @access	private
62 62
 	 * @param	string	the table name
63
-	 * @return	object
63
+	 * @return	boolean
64 64
 	 */
65 65
 	function _repair_table($table)
66 66
 	{
Please login to merge, or discard this patch.
web_interface/astpp/system/database/drivers/mysql/mysql_driver.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -372,7 +372,7 @@  discard block
 block discarded – undo
372 372
 	 *
373 373
 	 * @access	public
374 374
 	 * @param	string
375
-	 * @return	string
375
+	 * @return	integer
376 376
 	 */
377 377
 	function count_all($table = '')
378 378
 	{
@@ -441,7 +441,7 @@  discard block
 block discarded – undo
441 441
 	 *
442 442
 	 * @access	public
443 443
 	 * @param	string	the table name
444
-	 * @return	object
444
+	 * @return	string
445 445
 	 */
446 446
 	function _field_data($table)
447 447
 	{
@@ -526,7 +526,7 @@  discard block
 block discarded – undo
526 526
 	 *
527 527
 	 * @access	public
528 528
 	 * @param	type
529
-	 * @return	type
529
+	 * @return	string
530 530
 	 */
531 531
 	function _from_tables($tables)
532 532
 	{
Please login to merge, or discard this patch.
web_interface/astpp/system/database/drivers/mysql/mysql_forge.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 *
30 30
 	 * @access	private
31 31
 	 * @param	string	the database name
32
-	 * @return	bool
32
+	 * @return	string
33 33
 	 */
34 34
 	function _create_database($name)
35 35
 	{
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 	 *
44 44
 	 * @access	private
45 45
 	 * @param	string	the database name
46
-	 * @return	bool
46
+	 * @return	string
47 47
 	 */
48 48
 	function _drop_database($name)
49 49
 	{
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
 	 * @param	mixed	primary key(s)
156 156
 	 * @param	mixed	key(s)
157 157
 	 * @param	boolean	should 'IF NOT EXISTS' be added to the SQL
158
-	 * @return	bool
158
+	 * @return	string
159 159
 	 */
160 160
 	function _create_table($table, $fields, $primary_keys, $keys, $if_not_exists)
161 161
 	{
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
 	 * @param	string	the column name
228 228
 	 * @param	array	fields
229 229
 	 * @param	string	the field after which we should add the new field
230
-	 * @return	object
230
+	 * @return	string
231 231
 	 */
232 232
 	function _alter_table($alter_type, $table, $fields, $after_field = '')
233 233
 	{
Please login to merge, or discard this patch.
web_interface/astpp/system/database/drivers/mysql/mysql_result.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@
 block discarded – undo
130 130
 	 * result set starts at zero
131 131
 	 *
132 132
 	 * @access	private
133
-	 * @return	array
133
+	 * @return	boolean
134 134
 	 */
135 135
 	function _data_seek($n = 0)
136 136
 	{
Please login to merge, or discard this patch.
web_interface/astpp/system/database/drivers/mysql/mysql_utility.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 	 * List databases
29 29
 	 *
30 30
 	 * @access	private
31
-	 * @return	bool
31
+	 * @return	string
32 32
 	 */
33 33
 	function _list_databases()
34 34
 	{
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	 *
45 45
 	 * @access	private
46 46
 	 * @param	string	the table name
47
-	 * @return	object
47
+	 * @return	string
48 48
 	 */
49 49
 	function _optimize_table($table)
50 50
 	{
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 	 *
61 61
 	 * @access	private
62 62
 	 * @param	string	the table name
63
-	 * @return	object
63
+	 * @return	string
64 64
 	 */
65 65
 	function _repair_table($table)
66 66
 	{
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 	 *
74 74
 	 * @access	private
75 75
 	 * @param	array	Preferences
76
-	 * @return	mixed
76
+	 * @return	false|string
77 77
 	 */
78 78
 	function _backup($params = array())
79 79
 	{
Please login to merge, or discard this patch.