Completed
Push — v3.0 ( 23635d...e28df5 )
by Samir
23s
created
web_interface/astpp/system/database/drivers/oci8/oci8_forge.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 	 * @param	mixed	primary key(s)
74 74
 	 * @param	mixed	key(s)
75 75
 	 * @param	boolean	should 'IF NOT EXISTS' be added to the SQL
76
-	 * @return	bool
76
+	 * @return	string
77 77
 	 */
78 78
 	function _create_table($table, $fields, $primary_keys, $keys, $if_not_exists)
79 79
 	{
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
 	 * @param	string	the default value
204 204
 	 * @param	boolean	should 'NOT NULL' be added
205 205
 	 * @param	string	the field after which we should add the new field
206
-	 * @return	object
206
+	 * @return	string
207 207
 	 */
208 208
 	function _alter_table($alter_type, $table, $column_name, $column_definition = '', $default_value = '', $null = '', $after_field = '')
209 209
 	{
Please login to merge, or discard this patch.
web_interface/astpp/system/database/drivers/oci8/oci8_result.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
 	 * result set starts at zero
122 122
 	 *
123 123
 	 * @access	private
124
-	 * @return	array
124
+	 * @return	boolean
125 125
 	 */
126 126
 	function _data_seek($n = 0)
127 127
 	{
Please login to merge, or discard this patch.
web_interface/astpp/system/database/drivers/oci8/oci8_utility.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 	 *
54 54
 	 * @access	private
55 55
 	 * @param	string	the table name
56
-	 * @return	object
56
+	 * @return	boolean
57 57
 	 */
58 58
 	function _optimize_table($table)
59 59
 	{
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 	 *
70 70
 	 * @access	private
71 71
 	 * @param	string	the table name
72
-	 * @return	object
72
+	 * @return	boolean
73 73
 	 */
74 74
 	function _repair_table($table)
75 75
 	{
Please login to merge, or discard this patch.
web_interface/astpp/system/database/drivers/odbc/odbc_driver.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 	 * Select the database
125 125
 	 *
126 126
 	 * @access	private called by the base class
127
-	 * @return	resource
127
+	 * @return	boolean
128 128
 	 */
129 129
 	function db_select()
130 130
 	{
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 	 * @access	public
141 141
 	 * @param	string
142 142
 	 * @param	string
143
-	 * @return	resource
143
+	 * @return	boolean
144 144
 	 */
145 145
 	function db_set_charset($charset, $collation)
146 146
 	{
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
 	 *
369 369
 	 * @access	public
370 370
 	 * @param	string
371
-	 * @return	string
371
+	 * @return	integer
372 372
 	 */
373 373
 	function count_all($table = '')
374 374
 	{
@@ -437,7 +437,7 @@  discard block
 block discarded – undo
437 437
 	 *
438 438
 	 * @access	public
439 439
 	 * @param	string	the table name
440
-	 * @return	object
440
+	 * @return	string
441 441
 	 */
442 442
 	function _field_data($table)
443 443
 	{
@@ -463,7 +463,7 @@  discard block
 block discarded – undo
463 463
 	 * The error message number
464 464
 	 *
465 465
 	 * @access	private
466
-	 * @return	integer
466
+	 * @return	string
467 467
 	 */
468 468
 	function _error_number()
469 469
 	{
@@ -522,7 +522,7 @@  discard block
 block discarded – undo
522 522
 	 *
523 523
 	 * @access	public
524 524
 	 * @param	type
525
-	 * @return	type
525
+	 * @return	string
526 526
 	 */
527 527
 	function _from_tables($tables)
528 528
 	{
Please login to merge, or discard this patch.
web_interface/astpp/system/database/drivers/odbc/odbc_forge.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 	 * @param	mixed	primary key(s)
74 74
 	 * @param	mixed	key(s)
75 75
 	 * @param	boolean	should 'IF NOT EXISTS' be added to the SQL
76
-	 * @return	bool
76
+	 * @return	string
77 77
 	 */
78 78
 	function _create_table($table, $fields, $primary_keys, $keys, $if_not_exists)
79 79
 	{
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
 	 * @param	string	the default value
204 204
 	 * @param	boolean	should 'NOT NULL' be added
205 205
 	 * @param	string	the field after which we should add the new field
206
-	 * @return	object
206
+	 * @return	string
207 207
 	 */
208 208
 	function _alter_table($alter_type, $table, $column_name, $column_definition = '', $default_value = '', $null = '', $after_field = '')
209 209
 	{
Please login to merge, or discard this patch.
web_interface/astpp/system/database/drivers/pdo/pdo_result.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
 	 * result set starts at zero
122 122
 	 *
123 123
 	 * @access	private
124
-	 * @return	array
124
+	 * @return	boolean
125 125
 	 */
126 126
 	function _data_seek($n = 0)
127 127
 	{
Please login to merge, or discard this patch.
web_interface/astpp/system/database/drivers/postgre/postgre_result.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
 	 * result set starts at zero
122 122
 	 *
123 123
 	 * @access	private
124
-	 * @return	array
124
+	 * @return	boolean
125 125
 	 */
126 126
 	function _data_seek($n = 0)
127 127
 	{
Please login to merge, or discard this patch.
web_interface/astpp/system/database/drivers/postgre/postgre_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.