Skip to content

Commit 6ccd78d

Browse files
committed
Use camel case for parameter names in ibm_db2.stub.php
1 parent 61b806f commit 6ccd78d

File tree

3 files changed

+56
-62
lines changed

3 files changed

+56
-62
lines changed

ibm_db2.stub.php

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function db2_autocommit($connection, ?int $value = null): int|bool {}
3232
/**
3333
* @param resource $connection
3434
*/
35-
function db2_bind_param($connection, int $parameter_number, string $variable_name, int $parameter_type = DB2_PARAM_IN, int $data_type = 0, int $precision = -1, int $scale = 0): bool {}
35+
function db2_bind_param($connection, int $parameterNumber, string $variableName, int $parameterType = DB2_PARAM_IN, int $dataType = 0, int $precision = -1, int $scale = 0): bool {}
3636

3737
/**
3838
* @param resource $connection
@@ -50,46 +50,46 @@ function db2_pclose( $connection): bool {}
5050
* @param resource $connection
5151
* @return resource
5252
*/
53-
function db2_column_privileges($connection, ?string $qualifier = null, ?string $schema = null, ?string $table_name = null, ?string $column_name = null) {}
53+
function db2_column_privileges($connection, ?string $qualifier = null, ?string $schema = null, ?string $tableName = null, ?string $columnName = null) {}
5454

5555
/**
5656
* @param resource $connection
5757
* @return resource
5858
* @alias db2_column_privileges
5959
*/
60-
function db2_columnprivileges($connection, ?string $qualifier = null, ?string $schema = null, ?string $table_name = null, ?string $column_name = null) {}
60+
function db2_columnprivileges($connection, ?string $qualifier = null, ?string $schema = null, ?string $tableName = null, ?string $columnName = null) {}
6161

6262
/**
6363
* @param resource $connection
6464
* @return resource
6565
*/
66-
function db2_columns($connection, ?string $qualifier = null, ?string $schema = null, ?string $table_name = null, ?string $column_name = null) {}
66+
function db2_columns($connection, ?string $qualifier = null, ?string $schema = null, ?string $tableName = null, ?string $columnName = null) {}
6767

6868
/**
6969
* @param resource $connection
7070
* @return resource
7171
*/
72-
function db2_foreign_keys($connection, ?string $qualifier, ?string $schema, string $table_name) {}
72+
function db2_foreign_keys($connection, ?string $qualifier, ?string $schema, string $tableName) {}
7373

7474
/**
7575
* @param resource $connection
7676
* @return resource
7777
* @alias db2_foreign_keys
7878
*/
79-
function db2_foreignkeys($connection, ?string $qualifier, ?string $schema, string $table_name) {}
79+
function db2_foreignkeys($connection, ?string $qualifier, ?string $schema, string $tableName) {}
8080

8181
/**
8282
* @param resource $connection
8383
* @return resource
8484
*/
85-
function db2_primary_keys($connection, ?string $qualifier, ?string $schema, string $table_name) {}
85+
function db2_primary_keys($connection, ?string $qualifier, ?string $schema, string $tableName) {}
8686

8787
/**
8888
* @param resource $connection
8989
* @return resource
9090
* @alias db2_primary_keys
9191
*/
92-
function db2_primarykeys($connection, ?string $qualifier, ?string $schema, string $table_name) {}
92+
function db2_primarykeys($connection, ?string $qualifier, ?string $schema, string $tableName) {}
9393

9494
/**
9595
* @param resource $connection
@@ -114,39 +114,39 @@ function db2_procedures($connection, ?string $qualifier, string $schema, string
114114
* @param resource $connection
115115
* @return resource
116116
*/
117-
function db2_special_columns($connection, ?string $qualifier, string $schema, string $table_name, int $scope) {}
117+
function db2_special_columns($connection, ?string $qualifier, string $schema, string $tableName, int $scope) {}
118118

119119
/**
120120
* @param resource $connection
121121
* @return resource
122122
* @alias db2_special_columns
123123
*/
124-
function db2_specialcolumns(resource $connection, ?string $qualifier, string $schema, string $table_name, int $scope) {}
124+
function db2_specialcolumns($connection, ?string $qualifier, string $schema, string $tableName, int $scope) {}
125125

126126
/**
127127
* @param resource $connection
128128
* @return resource
129129
*/
130-
function db2_statistics($connection, ?string $qualifier, ?string $schema, string $table_name, bool|int $unique) {}
130+
function db2_statistics($connection, ?string $qualifier, ?string $schema, string $tableName, bool|int $unique) {}
131131

132132
/**
133133
* @param resource $connection
134134
* @return resource
135135
*/
136-
function db2_table_privileges($connection, ?string $qualifier = null, ?string $schema = null, ?string $table_name = null) {}
136+
function db2_table_privileges($connection, ?string $qualifier = null, ?string $schema = null, ?string $tableName = null) {}
137137

138138
/**
139139
* @param resource $connection
140140
* @return resource
141141
* @alias db2_table_privileges
142142
*/
143-
function db2_tableprivileges($connection, ?string $qualifier = null, ?string $schema = null, ?string $table_name = null) {}
143+
function db2_tableprivileges($connection, ?string $qualifier = null, ?string $schema = null, ?string $tableName = null) {}
144144

145145
/**
146146
* @param resource $connection
147147
* @return resource
148148
*/
149-
function db2_tables($connection, ?string $qualifier = null, ?string $schema = null, ?string $table_name = null, ?string $table_type = null) {}
149+
function db2_tables($connection, ?string $qualifier = null, ?string $schema = null, ?string $tableName = null, ?string $tableType = null) {}
150150

151151
/**
152152
* @param resource $connection
@@ -268,27 +268,27 @@ function db2_result($stmt, int|string $column): mixed|null {}
268268
/**
269269
* @param resource $stmt
270270
*/
271-
function db2_fetch_row($stmt, ?int $row_number = null): bool {}
271+
function db2_fetch_row($stmt, ?int $rowNumber = null): bool {}
272272

273273
/**
274274
* @param resource $stmt
275275
*/
276-
function db2_fetch_assoc($stmt, ?int $row_number = null): array|false {}
276+
function db2_fetch_assoc($stmt, ?int $rowNumber = null): array|false {}
277277

278278
/**
279279
* @param resource $stmt
280280
*/
281-
function db2_fetch_array($stmt, ?int $row_number = null): array|false {}
281+
function db2_fetch_array($stmt, ?int $rowNumber = null): array|false {}
282282

283283
/**
284284
* @param resource $stmt
285285
*/
286-
function db2_fetch_both($stmt, ?int $row_number = null): array|false {}
286+
function db2_fetch_both($stmt, ?int $rowNumber = null): array|false {}
287287

288288
/**
289289
* @param resource $stmt
290290
*/
291-
function db2_fetch_object($stmt, ?int $row_number = null): object|false {}
291+
function db2_fetch_object($stmt, ?int $rowNumber = null): object|false {}
292292

293293
/**
294294
* @param resource $stmt
@@ -316,12 +316,12 @@ function db2_client_info($connection): object|false {}
316316
*/
317317
function db2_server_info($connection): object|false {}
318318

319-
function db2_escape_string(string $string_literal): string {}
319+
function db2_escape_string(string $stringLiteral): string {}
320320

321321
/**
322322
* @param resource $stmt
323323
*/
324-
function db2_lob_read($stmt, int $colnum, int $length): string|false {}
324+
function db2_lob_read($stmt, int $columnNumber, int $length): string|false {}
325325

326326
/**
327327
* @param resource $resource

ibm_db2_arginfo.h

Lines changed: 19 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* This is a generated file, edit the .stub.php file instead.
2-
* Stub hash: 6178723de1b801eade1e4e7251805f53f100fee3 */
2+
* Stub hash: cf884b5f4060d67109e850739cae9eb3b32f8f22 */
33

44
ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_connect, 0, 0, 3)
55
ZEND_ARG_TYPE_INFO(0, database, IS_STRING, 0)
@@ -21,10 +21,10 @@ ZEND_END_ARG_INFO()
2121

2222
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_db2_bind_param, 0, 3, _IS_BOOL, 0)
2323
ZEND_ARG_INFO(0, connection)
24-
ZEND_ARG_TYPE_INFO(0, parameter_number, IS_LONG, 0)
25-
ZEND_ARG_TYPE_INFO(0, variable_name, IS_STRING, 0)
26-
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, parameter_type, IS_LONG, 0, "DB2_PARAM_IN")
27-
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, data_type, IS_LONG, 0, "0")
24+
ZEND_ARG_TYPE_INFO(0, parameterNumber, IS_LONG, 0)
25+
ZEND_ARG_TYPE_INFO(0, variableName, IS_STRING, 0)
26+
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, parameterType, IS_LONG, 0, "DB2_PARAM_IN")
27+
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, dataType, IS_LONG, 0, "0")
2828
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, precision, IS_LONG, 0, "-1")
2929
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, scale, IS_LONG, 0, "0")
3030
ZEND_END_ARG_INFO()
@@ -41,8 +41,8 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_column_privileges, 0, 0, 1)
4141
ZEND_ARG_INFO(0, connection)
4242
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, qualifier, IS_STRING, 1, "null")
4343
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, schema, IS_STRING, 1, "null")
44-
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, table_name, IS_STRING, 1, "null")
45-
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, column_name, IS_STRING, 1, "null")
44+
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, tableName, IS_STRING, 1, "null")
45+
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, columnName, IS_STRING, 1, "null")
4646
ZEND_END_ARG_INFO()
4747

4848
#define arginfo_db2_columnprivileges arginfo_db2_column_privileges
@@ -53,7 +53,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_foreign_keys, 0, 0, 4)
5353
ZEND_ARG_INFO(0, connection)
5454
ZEND_ARG_TYPE_INFO(0, qualifier, IS_STRING, 1)
5555
ZEND_ARG_TYPE_INFO(0, schema, IS_STRING, 1)
56-
ZEND_ARG_TYPE_INFO(0, table_name, IS_STRING, 0)
56+
ZEND_ARG_TYPE_INFO(0, tableName, IS_STRING, 0)
5757
ZEND_END_ARG_INFO()
5858

5959
#define arginfo_db2_foreignkeys arginfo_db2_foreign_keys
@@ -83,31 +83,25 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_special_columns, 0, 0, 5)
8383
ZEND_ARG_INFO(0, connection)
8484
ZEND_ARG_TYPE_INFO(0, qualifier, IS_STRING, 1)
8585
ZEND_ARG_TYPE_INFO(0, schema, IS_STRING, 0)
86-
ZEND_ARG_TYPE_INFO(0, table_name, IS_STRING, 0)
86+
ZEND_ARG_TYPE_INFO(0, tableName, IS_STRING, 0)
8787
ZEND_ARG_TYPE_INFO(0, scope, IS_LONG, 0)
8888
ZEND_END_ARG_INFO()
8989

90-
ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_specialcolumns, 0, 0, 5)
91-
ZEND_ARG_OBJ_INFO(0, connection, resource, 0)
92-
ZEND_ARG_TYPE_INFO(0, qualifier, IS_STRING, 1)
93-
ZEND_ARG_TYPE_INFO(0, schema, IS_STRING, 0)
94-
ZEND_ARG_TYPE_INFO(0, table_name, IS_STRING, 0)
95-
ZEND_ARG_TYPE_INFO(0, scope, IS_LONG, 0)
96-
ZEND_END_ARG_INFO()
90+
#define arginfo_db2_specialcolumns arginfo_db2_special_columns
9791

9892
ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_statistics, 0, 0, 5)
9993
ZEND_ARG_INFO(0, connection)
10094
ZEND_ARG_TYPE_INFO(0, qualifier, IS_STRING, 1)
10195
ZEND_ARG_TYPE_INFO(0, schema, IS_STRING, 1)
102-
ZEND_ARG_TYPE_INFO(0, table_name, IS_STRING, 0)
96+
ZEND_ARG_TYPE_INFO(0, tableName, IS_STRING, 0)
10397
ZEND_ARG_TYPE_MASK(0, unique, MAY_BE_BOOL|MAY_BE_LONG, NULL)
10498
ZEND_END_ARG_INFO()
10599

106100
ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_table_privileges, 0, 0, 1)
107101
ZEND_ARG_INFO(0, connection)
108102
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, qualifier, IS_STRING, 1, "null")
109103
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, schema, IS_STRING, 1, "null")
110-
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, table_name, IS_STRING, 1, "null")
104+
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, tableName, IS_STRING, 1, "null")
111105
ZEND_END_ARG_INFO()
112106

113107
#define arginfo_db2_tableprivileges arginfo_db2_table_privileges
@@ -116,8 +110,8 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_tables, 0, 0, 1)
116110
ZEND_ARG_INFO(0, connection)
117111
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, qualifier, IS_STRING, 1, "null")
118112
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, schema, IS_STRING, 1, "null")
119-
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, table_name, IS_STRING, 1, "null")
120-
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, table_type, IS_STRING, 1, "null")
113+
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, tableName, IS_STRING, 1, "null")
114+
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, tableType, IS_STRING, 1, "null")
121115
ZEND_END_ARG_INFO()
122116

123117
ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_exec, 0, 0, 2)
@@ -199,12 +193,12 @@ ZEND_END_ARG_INFO()
199193

200194
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_db2_fetch_row, 0, 1, _IS_BOOL, 0)
201195
ZEND_ARG_INFO(0, stmt)
202-
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, row_number, IS_LONG, 1, "null")
196+
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, rowNumber, IS_LONG, 1, "null")
203197
ZEND_END_ARG_INFO()
204198

205199
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX(arginfo_db2_fetch_assoc, 0, 1, MAY_BE_ARRAY|MAY_BE_FALSE)
206200
ZEND_ARG_INFO(0, stmt)
207-
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, row_number, IS_LONG, 1, "null")
201+
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, rowNumber, IS_LONG, 1, "null")
208202
ZEND_END_ARG_INFO()
209203

210204
#define arginfo_db2_fetch_array arginfo_db2_fetch_assoc
@@ -213,7 +207,7 @@ ZEND_END_ARG_INFO()
213207

214208
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX(arginfo_db2_fetch_object, 0, 1, MAY_BE_OBJECT|MAY_BE_FALSE)
215209
ZEND_ARG_INFO(0, stmt)
216-
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, row_number, IS_LONG, 1, "null")
210+
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, rowNumber, IS_LONG, 1, "null")
217211
ZEND_END_ARG_INFO()
218212

219213
#define arginfo_db2_free_result arginfo_db2_free_stmt
@@ -233,12 +227,12 @@ ZEND_END_ARG_INFO()
233227
#define arginfo_db2_server_info arginfo_db2_client_info
234228

235229
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_db2_escape_string, 0, 1, IS_STRING, 0)
236-
ZEND_ARG_TYPE_INFO(0, string_literal, IS_STRING, 0)
230+
ZEND_ARG_TYPE_INFO(0, stringLiteral, IS_STRING, 0)
237231
ZEND_END_ARG_INFO()
238232

239233
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX(arginfo_db2_lob_read, 0, 3, MAY_BE_STRING|MAY_BE_FALSE)
240234
ZEND_ARG_INFO(0, stmt)
241-
ZEND_ARG_TYPE_INFO(0, colnum, IS_LONG, 0)
235+
ZEND_ARG_TYPE_INFO(0, columnNumber, IS_LONG, 0)
242236
ZEND_ARG_TYPE_INFO(0, length, IS_LONG, 0)
243237
ZEND_END_ARG_INFO()
244238

ibm_db2_legacy_arginfo.h

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* This is a generated file, edit the .stub.php file instead.
2-
* Stub hash: 6178723de1b801eade1e4e7251805f53f100fee3 */
2+
* Stub hash: cf884b5f4060d67109e850739cae9eb3b32f8f22 */
33

44
ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_connect, 0, 0, 3)
55
ZEND_ARG_INFO(0, database)
@@ -21,10 +21,10 @@ ZEND_END_ARG_INFO()
2121

2222
ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_bind_param, 0, 0, 3)
2323
ZEND_ARG_INFO(0, connection)
24-
ZEND_ARG_INFO(0, parameter_number)
25-
ZEND_ARG_INFO(0, variable_name)
26-
ZEND_ARG_INFO(0, parameter_type)
27-
ZEND_ARG_INFO(0, data_type)
24+
ZEND_ARG_INFO(0, parameterNumber)
25+
ZEND_ARG_INFO(0, variableName)
26+
ZEND_ARG_INFO(0, parameterType)
27+
ZEND_ARG_INFO(0, dataType)
2828
ZEND_ARG_INFO(0, precision)
2929
ZEND_ARG_INFO(0, scale)
3030
ZEND_END_ARG_INFO()
@@ -41,8 +41,8 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_column_privileges, 0, 0, 1)
4141
ZEND_ARG_INFO(0, connection)
4242
ZEND_ARG_INFO(0, qualifier)
4343
ZEND_ARG_INFO(0, schema)
44-
ZEND_ARG_INFO(0, table_name)
45-
ZEND_ARG_INFO(0, column_name)
44+
ZEND_ARG_INFO(0, tableName)
45+
ZEND_ARG_INFO(0, columnName)
4646
ZEND_END_ARG_INFO()
4747

4848
#define arginfo_db2_columnprivileges arginfo_db2_column_privileges
@@ -53,7 +53,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_foreign_keys, 0, 0, 4)
5353
ZEND_ARG_INFO(0, connection)
5454
ZEND_ARG_INFO(0, qualifier)
5555
ZEND_ARG_INFO(0, schema)
56-
ZEND_ARG_INFO(0, table_name)
56+
ZEND_ARG_INFO(0, tableName)
5757
ZEND_END_ARG_INFO()
5858

5959
#define arginfo_db2_foreignkeys arginfo_db2_foreign_keys
@@ -83,7 +83,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_special_columns, 0, 0, 5)
8383
ZEND_ARG_INFO(0, connection)
8484
ZEND_ARG_INFO(0, qualifier)
8585
ZEND_ARG_INFO(0, schema)
86-
ZEND_ARG_INFO(0, table_name)
86+
ZEND_ARG_INFO(0, tableName)
8787
ZEND_ARG_INFO(0, scope)
8888
ZEND_END_ARG_INFO()
8989

@@ -93,15 +93,15 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_statistics, 0, 0, 5)
9393
ZEND_ARG_INFO(0, connection)
9494
ZEND_ARG_INFO(0, qualifier)
9595
ZEND_ARG_INFO(0, schema)
96-
ZEND_ARG_INFO(0, table_name)
96+
ZEND_ARG_INFO(0, tableName)
9797
ZEND_ARG_INFO(0, unique)
9898
ZEND_END_ARG_INFO()
9999

100100
ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_table_privileges, 0, 0, 1)
101101
ZEND_ARG_INFO(0, connection)
102102
ZEND_ARG_INFO(0, qualifier)
103103
ZEND_ARG_INFO(0, schema)
104-
ZEND_ARG_INFO(0, table_name)
104+
ZEND_ARG_INFO(0, tableName)
105105
ZEND_END_ARG_INFO()
106106

107107
#define arginfo_db2_tableprivileges arginfo_db2_table_privileges
@@ -110,8 +110,8 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_tables, 0, 0, 1)
110110
ZEND_ARG_INFO(0, connection)
111111
ZEND_ARG_INFO(0, qualifier)
112112
ZEND_ARG_INFO(0, schema)
113-
ZEND_ARG_INFO(0, table_name)
114-
ZEND_ARG_INFO(0, table_type)
113+
ZEND_ARG_INFO(0, tableName)
114+
ZEND_ARG_INFO(0, tableType)
115115
ZEND_END_ARG_INFO()
116116

117117
ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_exec, 0, 0, 2)
@@ -181,7 +181,7 @@ ZEND_END_ARG_INFO()
181181

182182
ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_fetch_row, 0, 0, 1)
183183
ZEND_ARG_INFO(0, stmt)
184-
ZEND_ARG_INFO(0, row_number)
184+
ZEND_ARG_INFO(0, rowNumber)
185185
ZEND_END_ARG_INFO()
186186

187187
#define arginfo_db2_fetch_assoc arginfo_db2_fetch_row
@@ -207,12 +207,12 @@ ZEND_END_ARG_INFO()
207207
#define arginfo_db2_server_info arginfo_db2_commit
208208

209209
ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_escape_string, 0, 0, 1)
210-
ZEND_ARG_INFO(0, string_literal)
210+
ZEND_ARG_INFO(0, stringLiteral)
211211
ZEND_END_ARG_INFO()
212212

213213
ZEND_BEGIN_ARG_INFO_EX(arginfo_db2_lob_read, 0, 0, 3)
214214
ZEND_ARG_INFO(0, stmt)
215-
ZEND_ARG_INFO(0, colnum)
215+
ZEND_ARG_INFO(0, columnNumber)
216216
ZEND_ARG_INFO(0, length)
217217
ZEND_END_ARG_INFO()
218218

0 commit comments

Comments
 (0)