Skip to content

Commit 647b1c7

Browse files
committed
Remove most uses of ZEND_PARSE_PARAMETERS_END_EX()
As ZPP now throws, it makes no sense to specify an explicit return value.
1 parent 5ff7347 commit 647b1c7

19 files changed

+130
-130
lines changed

ext/date/php_date.c

+25-25
Original file line numberDiff line numberDiff line change
@@ -936,7 +936,7 @@ static void php_date(INTERNAL_FUNCTION_PARAMETERS, int localtime)
936936
Z_PARAM_STR(format)
937937
Z_PARAM_OPTIONAL
938938
Z_PARAM_LONG(ts)
939-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
939+
ZEND_PARSE_PARAMETERS_END();
940940

941941
if (ZEND_NUM_ARGS() == 1) {
942942
ts = php_time();
@@ -1096,7 +1096,7 @@ PHP_FUNCTION(idate)
10961096
Z_PARAM_STR(format)
10971097
Z_PARAM_OPTIONAL
10981098
Z_PARAM_LONG(ts)
1099-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
1099+
ZEND_PARSE_PARAMETERS_END();
11001100

11011101
if (ZSTR_LEN(format) != 1) {
11021102
php_error_docref(NULL, E_WARNING, "idate format is one char");
@@ -1168,7 +1168,7 @@ PHP_FUNCTION(strtotime)
11681168
Z_PARAM_STR(times)
11691169
Z_PARAM_OPTIONAL
11701170
Z_PARAM_LONG(preset_ts)
1171-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
1171+
ZEND_PARSE_PARAMETERS_END();
11721172

11731173
tzi = get_timezone_info();
11741174

@@ -1214,7 +1214,7 @@ PHPAPI void php_mktime(INTERNAL_FUNCTION_PARAMETERS, int gmt)
12141214
Z_PARAM_LONG(mon)
12151215
Z_PARAM_LONG(day)
12161216
Z_PARAM_LONG(yea)
1217-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
1217+
ZEND_PARSE_PARAMETERS_END();
12181218

12191219
/* Initialize structure with current time */
12201220
now = timelib_time_ctor();
@@ -1299,7 +1299,7 @@ PHP_FUNCTION(checkdate)
12991299
Z_PARAM_LONG(m)
13001300
Z_PARAM_LONG(d)
13011301
Z_PARAM_LONG(y)
1302-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
1302+
ZEND_PARSE_PARAMETERS_END();
13031303

13041304
if (y < 1 || y > 32767 || !timelib_valid_date(y, m, d)) {
13051305
RETURN_FALSE;
@@ -1327,7 +1327,7 @@ PHPAPI void php_strftime(INTERNAL_FUNCTION_PARAMETERS, int gmt)
13271327
Z_PARAM_STR(format)
13281328
Z_PARAM_OPTIONAL
13291329
Z_PARAM_LONG(timestamp)
1330-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
1330+
ZEND_PARSE_PARAMETERS_END();
13311331

13321332
if (ZSTR_LEN(format) == 0) {
13331333
RETURN_FALSE;
@@ -1445,7 +1445,7 @@ PHP_FUNCTION(localtime)
14451445
Z_PARAM_OPTIONAL
14461446
Z_PARAM_LONG(timestamp)
14471447
Z_PARAM_BOOL(associative)
1448-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
1448+
ZEND_PARSE_PARAMETERS_END();
14491449

14501450
if (ZEND_NUM_ARGS() == 0) {
14511451
timestamp = (zend_long) php_time();
@@ -1496,7 +1496,7 @@ PHP_FUNCTION(getdate)
14961496
ZEND_PARSE_PARAMETERS_START(0, 1)
14971497
Z_PARAM_OPTIONAL
14981498
Z_PARAM_LONG(timestamp)
1499-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
1499+
ZEND_PARSE_PARAMETERS_END();
15001500

15011501
if (ZEND_NUM_ARGS() == 0) {
15021502
timestamp = (zend_long) php_time();
@@ -2396,7 +2396,7 @@ PHP_FUNCTION(date_create)
23962396
Z_PARAM_OPTIONAL
23972397
Z_PARAM_STRING(time_str, time_str_len)
23982398
Z_PARAM_OBJECT_OF_CLASS_EX(timezone_object, date_ce_timezone, 1, 0)
2399-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
2399+
ZEND_PARSE_PARAMETERS_END();
24002400

24012401
php_date_instantiate(date_ce_date, return_value);
24022402
if (!php_date_initialize(Z_PHPDATE_P(return_value), time_str, time_str_len, NULL, timezone_object, 0)) {
@@ -2419,7 +2419,7 @@ PHP_FUNCTION(date_create_immutable)
24192419
Z_PARAM_OPTIONAL
24202420
Z_PARAM_STRING(time_str, time_str_len)
24212421
Z_PARAM_OBJECT_OF_CLASS_EX(timezone_object, date_ce_timezone, 1, 0)
2422-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
2422+
ZEND_PARSE_PARAMETERS_END();
24232423

24242424
php_date_instantiate(date_ce_immutable, return_value);
24252425
if (!php_date_initialize(Z_PHPDATE_P(return_value), time_str, time_str_len, NULL, timezone_object, 0)) {
@@ -2443,7 +2443,7 @@ PHP_FUNCTION(date_create_from_format)
24432443
Z_PARAM_STRING(time_str, time_str_len)
24442444
Z_PARAM_OPTIONAL
24452445
Z_PARAM_OBJECT_OF_CLASS_EX(timezone_object, date_ce_timezone, 1, 0)
2446-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
2446+
ZEND_PARSE_PARAMETERS_END();
24472447

24482448
php_date_instantiate(date_ce_date, return_value);
24492449
if (!php_date_initialize(Z_PHPDATE_P(return_value), time_str, time_str_len, format_str, timezone_object, 0)) {
@@ -2467,7 +2467,7 @@ PHP_FUNCTION(date_create_immutable_from_format)
24672467
Z_PARAM_STRING(time_str, time_str_len)
24682468
Z_PARAM_OPTIONAL
24692469
Z_PARAM_OBJECT_OF_CLASS_EX(timezone_object, date_ce_timezone, 1, 0)
2470-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
2470+
ZEND_PARSE_PARAMETERS_END();
24712471

24722472
php_date_instantiate(date_ce_immutable, return_value);
24732473
if (!php_date_initialize(Z_PHPDATE_P(return_value), time_str, time_str_len, format_str, timezone_object, 0)) {
@@ -2622,7 +2622,7 @@ PHP_METHOD(DateTime, __set_state)
26222622

26232623
ZEND_PARSE_PARAMETERS_START(1, 1)
26242624
Z_PARAM_ARRAY(array)
2625-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
2625+
ZEND_PARSE_PARAMETERS_END();
26262626

26272627
myht = Z_ARRVAL_P(array);
26282628

@@ -2644,7 +2644,7 @@ PHP_METHOD(DateTimeImmutable, __set_state)
26442644

26452645
ZEND_PARSE_PARAMETERS_START(1, 1)
26462646
Z_PARAM_ARRAY(array)
2647-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
2647+
ZEND_PARSE_PARAMETERS_END();
26482648

26492649
myht = Z_ARRVAL_P(array);
26502650

@@ -2794,7 +2794,7 @@ PHP_FUNCTION(date_parse)
27942794

27952795
ZEND_PARSE_PARAMETERS_START(1, 1)
27962796
Z_PARAM_STR(date)
2797-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
2797+
ZEND_PARSE_PARAMETERS_END();
27982798

27992799
parsed_time = timelib_strtotime(ZSTR_VAL(date), ZSTR_LEN(date), &error, DATE_TIMEZONEDB, php_date_parse_tzfile_wrapper);
28002800
php_date_do_return_parsed_time(INTERNAL_FUNCTION_PARAM_PASSTHRU, parsed_time, error);
@@ -2813,7 +2813,7 @@ PHP_FUNCTION(date_parse_from_format)
28132813
ZEND_PARSE_PARAMETERS_START(2, 2)
28142814
Z_PARAM_STR(format)
28152815
Z_PARAM_STR(date)
2816-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
2816+
ZEND_PARSE_PARAMETERS_END();
28172817

28182818
parsed_time = timelib_parse_from_format(ZSTR_VAL(format), ZSTR_VAL(date), ZSTR_LEN(date), &error, DATE_TIMEZONEDB, php_date_parse_tzfile_wrapper);
28192819
php_date_do_return_parsed_time(INTERNAL_FUNCTION_PARAM_PASSTHRU, parsed_time, error);
@@ -3495,7 +3495,7 @@ PHP_FUNCTION(timezone_open)
34953495

34963496
ZEND_PARSE_PARAMETERS_START(1, 1)
34973497
Z_PARAM_STR(tz)
3498-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
3498+
ZEND_PARSE_PARAMETERS_END();
34993499

35003500
tzobj = Z_PHPTIMEZONE_P(php_date_instantiate(date_ce_timezone, return_value));
35013501
if (SUCCESS != timezone_initialize(tzobj, ZSTR_VAL(tz), ZSTR_LEN(tz))) {
@@ -3620,7 +3620,7 @@ PHP_FUNCTION(timezone_name_from_abbr)
36203620
Z_PARAM_OPTIONAL
36213621
Z_PARAM_LONG(gmtoffset)
36223622
Z_PARAM_LONG(isdst)
3623-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
3623+
ZEND_PARSE_PARAMETERS_END();
36243624

36253625
tzid = timelib_timezone_id_from_abbr(ZSTR_VAL(abbr), gmtoffset, isdst);
36263626

@@ -4028,7 +4028,7 @@ PHP_METHOD(DateInterval, __set_state)
40284028

40294029
ZEND_PARSE_PARAMETERS_START(1, 1)
40304030
Z_PARAM_ARRAY(array)
4031-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
4031+
ZEND_PARSE_PARAMETERS_END();
40324032

40334033
myht = Z_ARRVAL_P(array);
40344034

@@ -4066,7 +4066,7 @@ PHP_FUNCTION(date_interval_create_from_date_string)
40664066

40674067
ZEND_PARSE_PARAMETERS_START(1, 1)
40684068
Z_PARAM_STR(time_str)
4069-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
4069+
ZEND_PARSE_PARAMETERS_END();
40704070

40714071
time = timelib_strtotime(ZSTR_VAL(time_str), ZSTR_LEN(time_str), &err, DATE_TIMEZONEDB, php_date_parse_tzfile_wrapper);
40724072

@@ -4425,7 +4425,7 @@ PHP_FUNCTION(timezone_identifiers_list)
44254425
Z_PARAM_OPTIONAL
44264426
Z_PARAM_LONG(what)
44274427
Z_PARAM_STRING_EX(option, option_len, 1, 0)
4428-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
4428+
ZEND_PARSE_PARAMETERS_END();
44294429

44304430
/* Extra validation */
44314431
if (what == PHP_DATE_TIMEZONE_PER_COUNTRY && option_len != 2) {
@@ -4506,7 +4506,7 @@ PHP_FUNCTION(date_default_timezone_set)
45064506

45074507
ZEND_PARSE_PARAMETERS_START(1, 1)
45084508
Z_PARAM_STRING(zone, zone_len)
4509-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
4509+
ZEND_PARSE_PARAMETERS_END();
45104510

45114511
if (!timelib_timezone_id_is_valid(zone, DATE_TIMEZONEDB)) {
45124512
php_error_docref(NULL, E_NOTICE, "Timezone ID '%s' is invalid", zone);
@@ -4557,7 +4557,7 @@ static void php_do_date_sunrise_sunset(INTERNAL_FUNCTION_PARAMETERS, int calc_su
45574557
Z_PARAM_DOUBLE(longitude)
45584558
Z_PARAM_DOUBLE(zenith)
45594559
Z_PARAM_DOUBLE(gmt_offset)
4560-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
4560+
ZEND_PARSE_PARAMETERS_END();
45614561

45624562
switch (ZEND_NUM_ARGS()) {
45634563
case 1:
@@ -4661,7 +4661,7 @@ PHP_FUNCTION(date_sun_info)
46614661
Z_PARAM_LONG(time)
46624662
Z_PARAM_DOUBLE(latitude)
46634663
Z_PARAM_DOUBLE(longitude)
4664-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
4664+
ZEND_PARSE_PARAMETERS_END();
46654665

46664666
/* Initialize time struct */
46674667
t = timelib_time_ctor();
@@ -4912,7 +4912,7 @@ PHP_METHOD(DatePeriod, __set_state)
49124912

49134913
ZEND_PARSE_PARAMETERS_START(1, 1)
49144914
Z_PARAM_ARRAY(array)
4915-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
4915+
ZEND_PARSE_PARAMETERS_END();
49164916

49174917
myht = Z_ARRVAL_P(array);
49184918

ext/pcre/php_pcre.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,7 @@ static void php_do_pcre_match(INTERNAL_FUNCTION_PARAMETERS, int global) /* {{{ *
10851085
Z_PARAM_ZVAL(subpats)
10861086
Z_PARAM_LONG(flags)
10871087
Z_PARAM_LONG(start_offset)
1088-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
1088+
ZEND_PARSE_PARAMETERS_END();
10891089

10901090
/* Compile regex or get it from cache. */
10911091
if ((pce = pcre_get_compiled_regex_cache(regex)) == NULL) {
@@ -2446,7 +2446,7 @@ static PHP_FUNCTION(preg_split)
24462446
Z_PARAM_OPTIONAL
24472447
Z_PARAM_LONG(limit_val)
24482448
Z_PARAM_LONG(flags)
2449-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
2449+
ZEND_PARSE_PARAMETERS_END();
24502450

24512451
/* Compile regex or get it from cache. */
24522452
if ((pce = pcre_get_compiled_regex_cache(regex)) == NULL) {

ext/pdo/pdo_dbh.c

+6-6
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ static PHP_METHOD(PDO, prepare)
469469
Z_PARAM_STRING(statement, statement_len)
470470
Z_PARAM_OPTIONAL
471471
Z_PARAM_ARRAY(options)
472-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
472+
ZEND_PARSE_PARAMETERS_END();
473473

474474
PDO_DBH_CLEAR_ERR();
475475
PDO_CONSTRUCT_CHECK;
@@ -822,7 +822,7 @@ static PHP_METHOD(PDO, setAttribute)
822822
ZEND_PARSE_PARAMETERS_START(2, 2)
823823
Z_PARAM_LONG(attr)
824824
Z_PARAM_ZVAL(value)
825-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
825+
ZEND_PARSE_PARAMETERS_END();
826826

827827
PDO_DBH_CLEAR_ERR();
828828
PDO_CONSTRUCT_CHECK;
@@ -843,7 +843,7 @@ static PHP_METHOD(PDO, getAttribute)
843843

844844
ZEND_PARSE_PARAMETERS_START(1, 1)
845845
Z_PARAM_LONG(attr)
846-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
846+
ZEND_PARSE_PARAMETERS_END();
847847

848848
PDO_DBH_CLEAR_ERR();
849849
PDO_CONSTRUCT_CHECK;
@@ -910,7 +910,7 @@ static PHP_METHOD(PDO, exec)
910910

911911
ZEND_PARSE_PARAMETERS_START(1, 1)
912912
Z_PARAM_STRING(statement, statement_len)
913-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
913+
ZEND_PARSE_PARAMETERS_END();
914914

915915
if (!statement_len) {
916916
pdo_raise_impl_error(dbh, NULL, "HY000", "trying to execute an empty query");
@@ -939,7 +939,7 @@ static PHP_METHOD(PDO, lastInsertId)
939939
ZEND_PARSE_PARAMETERS_START(0, 1)
940940
Z_PARAM_OPTIONAL
941941
Z_PARAM_STRING_EX(name, namelen, 1, 0)
942-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
942+
ZEND_PARSE_PARAMETERS_END();
943943

944944
PDO_DBH_CLEAR_ERR();
945945
PDO_CONSTRUCT_CHECK;
@@ -1134,7 +1134,7 @@ static PHP_METHOD(PDO, quote)
11341134
Z_PARAM_STRING(str, str_len)
11351135
Z_PARAM_OPTIONAL
11361136
Z_PARAM_LONG(paramtype)
1137-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
1137+
ZEND_PARSE_PARAMETERS_END();
11381138

11391139
PDO_DBH_CLEAR_ERR();
11401140
PDO_CONSTRUCT_CHECK;

ext/pdo/pdo_stmt.c

+8-8
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ static PHP_METHOD(PDOStatement, execute)
424424
ZEND_PARSE_PARAMETERS_START(0, 1)
425425
Z_PARAM_OPTIONAL
426426
Z_PARAM_ARRAY_EX(input_params, 1, 0)
427-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
427+
ZEND_PARSE_PARAMETERS_END();
428428

429429
PDO_STMT_CLEAR_ERR();
430430

@@ -1251,7 +1251,7 @@ static PHP_METHOD(PDOStatement, fetch)
12511251
Z_PARAM_LONG(how)
12521252
Z_PARAM_LONG(ori)
12531253
Z_PARAM_LONG(off)
1254-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
1254+
ZEND_PARSE_PARAMETERS_END();
12551255

12561256
PDO_STMT_CLEAR_ERR();
12571257

@@ -1284,7 +1284,7 @@ static PHP_METHOD(PDOStatement, fetchObject)
12841284
Z_PARAM_OPTIONAL
12851285
Z_PARAM_STR_EX(class_name, 1, 0)
12861286
Z_PARAM_ARRAY(ctor_args)
1287-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
1287+
ZEND_PARSE_PARAMETERS_END();
12881288

12891289
PDO_STMT_CLEAR_ERR();
12901290

@@ -1343,7 +1343,7 @@ static PHP_METHOD(PDOStatement, fetchColumn)
13431343
ZEND_PARSE_PARAMETERS_START(0, 1)
13441344
Z_PARAM_OPTIONAL
13451345
Z_PARAM_LONG(col_n)
1346-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
1346+
ZEND_PARSE_PARAMETERS_END();
13471347

13481348
PDO_STMT_CLEAR_ERR();
13491349

@@ -1373,7 +1373,7 @@ static PHP_METHOD(PDOStatement, fetchAll)
13731373
Z_PARAM_LONG(how)
13741374
Z_PARAM_ZVAL(arg2)
13751375
Z_PARAM_ZVAL(ctor_args)
1376-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
1376+
ZEND_PARSE_PARAMETERS_END();
13771377

13781378
if (!pdo_stmt_verify_mode(stmt, how, 1)) {
13791379
RETURN_FALSE;
@@ -1694,7 +1694,7 @@ static PHP_METHOD(PDOStatement, setAttribute)
16941694
ZEND_PARSE_PARAMETERS_START(2, 2)
16951695
Z_PARAM_LONG(attr)
16961696
Z_PARAM_ZVAL_EX(value, 1, 0)
1697-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
1697+
ZEND_PARSE_PARAMETERS_END();
16981698

16991699
if (!stmt->methods->set_attribute) {
17001700
goto fail;
@@ -1735,7 +1735,7 @@ static PHP_METHOD(PDOStatement, getAttribute)
17351735

17361736
ZEND_PARSE_PARAMETERS_START(1, 1)
17371737
Z_PARAM_LONG(attr)
1738-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
1738+
ZEND_PARSE_PARAMETERS_END();
17391739

17401740
if (!stmt->methods->get_attribute) {
17411741
if (!generic_stmt_attr_get(stmt, return_value, attr)) {
@@ -1789,7 +1789,7 @@ static PHP_METHOD(PDOStatement, getColumnMeta)
17891789

17901790
ZEND_PARSE_PARAMETERS_START(1, 1)
17911791
Z_PARAM_LONG(colno)
1792-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
1792+
ZEND_PARSE_PARAMETERS_END();
17931793

17941794
if(colno < 0) {
17951795
pdo_raise_impl_error(stmt->dbh, stmt, "42P10", "column number must be non-negative");

ext/pdo_sqlite/sqlite_driver.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ static PHP_METHOD(SQLite, sqliteCreateFunction)
534534
Z_PARAM_OPTIONAL
535535
Z_PARAM_LONG(argc)
536536
Z_PARAM_LONG(flags)
537-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
537+
ZEND_PARSE_PARAMETERS_END();
538538

539539
dbh = Z_PDO_DBH_P(ZEND_THIS);
540540
PDO_CONSTRUCT_CHECK;
@@ -606,7 +606,7 @@ static PHP_METHOD(SQLite, sqliteCreateAggregate)
606606
Z_PARAM_ZVAL(fini_callback)
607607
Z_PARAM_OPTIONAL
608608
Z_PARAM_LONG(argc)
609-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
609+
ZEND_PARSE_PARAMETERS_END();
610610

611611
dbh = Z_PDO_DBH_P(ZEND_THIS);
612612
PDO_CONSTRUCT_CHECK;
@@ -666,7 +666,7 @@ static PHP_METHOD(SQLite, sqliteCreateCollation)
666666
ZEND_PARSE_PARAMETERS_START(2, 2)
667667
Z_PARAM_STRING(collation_name, collation_name_len)
668668
Z_PARAM_ZVAL(callback)
669-
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
669+
ZEND_PARSE_PARAMETERS_END();
670670

671671
dbh = Z_PDO_DBH_P(ZEND_THIS);
672672
PDO_CONSTRUCT_CHECK;

0 commit comments

Comments
 (0)