Skip to content

Commit 5f54f48

Browse files
carusogabrielcmb69
authored andcommitted
[ci skip] Remove space between function name and open parentheses
1 parent a2c7c46 commit 5f54f48

File tree

6 files changed

+36
-36
lines changed

6 files changed

+36
-36
lines changed

ext/gd/gd.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4088,7 +4088,7 @@ PHP_FUNCTION(image2wbmp)
40884088
/* }}} */
40894089

40904090
#if defined(HAVE_GD_JPG)
4091-
/* {{{ proto bool jpeg2wbmp (string f_org, string f_dest, int d_height, int d_width, int threshold)
4091+
/* {{{ proto bool jpeg2wbmp(string f_org, string f_dest, int d_height, int d_width, int threshold)
40924092
Convert JPEG image to WBMP image */
40934093
PHP_FUNCTION(jpeg2wbmp)
40944094
{
@@ -4098,7 +4098,7 @@ PHP_FUNCTION(jpeg2wbmp)
40984098
#endif
40994099

41004100
#if defined(HAVE_GD_PNG)
4101-
/* {{{ proto bool png2wbmp (string f_org, string f_dest, int d_height, int d_width, int threshold)
4101+
/* {{{ proto bool png2wbmp(string f_org, string f_dest, int d_height, int d_width, int threshold)
41024102
Convert PNG image to WBMP image */
41034103
PHP_FUNCTION(png2wbmp)
41044104
{

ext/gettext/gettext.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ PHP_NAMED_FUNCTION(zif_dcngettext)
355355

356356
#if HAVE_BIND_TEXTDOMAIN_CODESET
357357

358-
/* {{{ proto string bind_textdomain_codeset (string domain, string codeset)
358+
/* {{{ proto string bind_textdomain_codeset(string domain, string codeset)
359359
Specify the character encoding in which the messages from the DOMAIN message catalog will be returned. */
360360
PHP_NAMED_FUNCTION(zif_bind_textdomain_codeset)
361361
{

ext/mysqli/mysqli_api.c

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1181,7 +1181,7 @@ static void php_add_field_properties(zval *value, const MYSQL_FIELD *field)
11811181
}
11821182
/* }}} */
11831183

1184-
/* {{{ proto mixed mysqli_fetch_field (object result)
1184+
/* {{{ proto mixed mysqli_fetch_field(object result)
11851185
Get column information from a result and return as an object */
11861186
PHP_FUNCTION(mysqli_fetch_field)
11871187
{
@@ -1204,7 +1204,7 @@ PHP_FUNCTION(mysqli_fetch_field)
12041204
}
12051205
/* }}} */
12061206

1207-
/* {{{ proto mixed mysqli_fetch_fields (object result)
1207+
/* {{{ proto mixed mysqli_fetch_fields(object result)
12081208
Return array of objects containing field meta-data */
12091209
PHP_FUNCTION(mysqli_fetch_fields)
12101210
{
@@ -1234,7 +1234,7 @@ PHP_FUNCTION(mysqli_fetch_fields)
12341234
}
12351235
/* }}} */
12361236

1237-
/* {{{ proto mixed mysqli_fetch_field_direct (object result, int offset)
1237+
/* {{{ proto mixed mysqli_fetch_field_direct(object result, int offset)
12381238
Fetch meta-data for a single field */
12391239
PHP_FUNCTION(mysqli_fetch_field_direct)
12401240
{
@@ -1263,7 +1263,7 @@ PHP_FUNCTION(mysqli_fetch_field_direct)
12631263
}
12641264
/* }}} */
12651265

1266-
/* {{{ proto mixed mysqli_fetch_lengths (object result)
1266+
/* {{{ proto mixed mysqli_fetch_lengths(object result)
12671267
Get the length of each output in a result */
12681268
PHP_FUNCTION(mysqli_fetch_lengths)
12691269
{
@@ -1295,7 +1295,7 @@ PHP_FUNCTION(mysqli_fetch_lengths)
12951295
}
12961296
/* }}} */
12971297

1298-
/* {{{ proto array mysqli_fetch_row (object result)
1298+
/* {{{ proto array mysqli_fetch_row(object result)
12991299
Get a result row as an enumerated array */
13001300
PHP_FUNCTION(mysqli_fetch_row)
13011301
{
@@ -1396,7 +1396,7 @@ PHP_FUNCTION(mysqli_get_client_version)
13961396
}
13971397
/* }}} */
13981398

1399-
/* {{{ proto string mysqli_get_host_info (object link)
1399+
/* {{{ proto string mysqli_get_host_info(object link)
14001400
Get MySQL host info */
14011401
PHP_FUNCTION(mysqli_get_host_info)
14021402
{
@@ -2669,7 +2669,7 @@ PHP_FUNCTION(mysqli_use_result)
26692669
}
26702670
/* }}} */
26712671

2672-
/* {{{ proto int mysqli_warning_count (object link)
2672+
/* {{{ proto int mysqli_warning_count(object link)
26732673
Return number of warnings from the last query for the given link */
26742674
PHP_FUNCTION(mysqli_warning_count)
26752675
{

ext/mysqli/mysqli_nonapi.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -336,23 +336,23 @@ PHP_FUNCTION(mysqli_connect_error)
336336
}
337337
/* }}} */
338338

339-
/* {{{ proto mixed mysqli_fetch_array (object result [,int resulttype])
339+
/* {{{ proto mixed mysqli_fetch_array(object result [,int resulttype])
340340
Fetch a result row as an associative array, a numeric array, or both */
341341
PHP_FUNCTION(mysqli_fetch_array)
342342
{
343343
php_mysqli_fetch_into_hash(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0, 0);
344344
}
345345
/* }}} */
346346

347-
/* {{{ proto mixed mysqli_fetch_assoc (object result)
347+
/* {{{ proto mixed mysqli_fetch_assoc(object result)
348348
Fetch a result row as an associative array */
349349
PHP_FUNCTION(mysqli_fetch_assoc)
350350
{
351351
php_mysqli_fetch_into_hash(INTERNAL_FUNCTION_PARAM_PASSTHRU, MYSQLI_ASSOC, 0);
352352
}
353353
/* }}} */
354354

355-
/* {{{ proto mixed mysqli_fetch_all (object result [,int resulttype])
355+
/* {{{ proto mixed mysqli_fetch_all(object result [,int resulttype])
356356
Fetches all result rows as an associative array, a numeric array, or both */
357357
#if defined(MYSQLI_USE_MYSQLND)
358358
PHP_FUNCTION(mysqli_fetch_all)
@@ -405,7 +405,7 @@ PHP_FUNCTION(mysqli_get_connection_stats)
405405
#endif
406406
/* }}} */
407407

408-
/* {{{ proto mixed mysqli_error_list (object connection)
408+
/* {{{ proto mixed mysqli_error_list(object connection)
409409
Fetches all client errors */
410410
PHP_FUNCTION(mysqli_error_list)
411411
{
@@ -497,7 +497,7 @@ PHP_FUNCTION(mysqli_stmt_error_list)
497497
}
498498
/* }}} */
499499

500-
/* {{{ proto mixed mysqli_fetch_object (object result [, string class_name [, NULL|array ctor_params]])
500+
/* {{{ proto mixed mysqli_fetch_object(object result [, string class_name [, NULL|array ctor_params]])
501501
Fetch a result row as an object */
502502
PHP_FUNCTION(mysqli_fetch_object)
503503
{

ext/shmop/shmop.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ PHP_MINFO_FUNCTION(shmop)
142142
}
143143
/* }}} */
144144

145-
/* {{{ proto resource shmop_open (int key, string flags, int mode, int size)
145+
/* {{{ proto resource shmop_open(int key, string flags, int mode, int size)
146146
gets and attaches a shared memory segment */
147147
PHP_FUNCTION(shmop_open)
148148
{
@@ -223,7 +223,7 @@ PHP_FUNCTION(shmop_open)
223223
}
224224
/* }}} */
225225

226-
/* {{{ proto string shmop_read (resource shmid, int start, int count)
226+
/* {{{ proto string shmop_read(resource shmid, int start, int count)
227227
reads from a shm segment */
228228
PHP_FUNCTION(shmop_read)
229229
{
@@ -261,7 +261,7 @@ PHP_FUNCTION(shmop_read)
261261
}
262262
/* }}} */
263263

264-
/* {{{ proto void shmop_close (resource shmid)
264+
/* {{{ proto void shmop_close(resource shmid)
265265
closes a shared memory segment */
266266
PHP_FUNCTION(shmop_close)
267267
{
@@ -281,7 +281,7 @@ PHP_FUNCTION(shmop_close)
281281
}
282282
/* }}} */
283283

284-
/* {{{ proto int shmop_size (resource shmid)
284+
/* {{{ proto int shmop_size(resource shmid)
285285
returns the shm size */
286286
PHP_FUNCTION(shmop_size)
287287
{
@@ -300,7 +300,7 @@ PHP_FUNCTION(shmop_size)
300300
}
301301
/* }}} */
302302

303-
/* {{{ proto int shmop_write (resource shmid, string data, int offset)
303+
/* {{{ proto int shmop_write(resource shmid, string data, int offset)
304304
writes to a shared memory segment */
305305
PHP_FUNCTION(shmop_write)
306306
{
@@ -335,7 +335,7 @@ PHP_FUNCTION(shmop_write)
335335
}
336336
/* }}} */
337337

338-
/* {{{ proto bool shmop_delete (resource shmid)
338+
/* {{{ proto bool shmop_delete(resource shmid)
339339
mark segment for deletion */
340340
PHP_FUNCTION(shmop_delete)
341341
{

ext/soap/soap.c

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -801,7 +801,7 @@ PHP_MINFO_FUNCTION(soap)
801801
}
802802

803803

804-
/* {{{ proto object SoapParam::SoapParam ( mixed data, string name)
804+
/* {{{ proto object SoapParam::SoapParam(mixed data, string name)
805805
SoapParam constructor */
806806
PHP_METHOD(SoapParam, SoapParam)
807807
{
@@ -825,7 +825,7 @@ PHP_METHOD(SoapParam, SoapParam)
825825
/* }}} */
826826

827827

828-
/* {{{ proto object SoapHeader::SoapHeader ( string namespace, string name [, mixed data [, bool mustUnderstand [, mixed actor]]])
828+
/* {{{ proto object SoapHeader::SoapHeader(string namespace, string name [, mixed data [, bool mustUnderstand [, mixed actor]]])
829829
SoapHeader constructor */
830830
PHP_METHOD(SoapHeader, SoapHeader)
831831
{
@@ -867,7 +867,7 @@ PHP_METHOD(SoapHeader, SoapHeader)
867867
}
868868
}
869869

870-
/* {{{ proto object SoapFault::SoapFault ( string faultcode, string faultstring [, string faultactor [, mixed detail [, string faultname [, mixed headerfault]]]])
870+
/* {{{ proto object SoapFault::SoapFault(string faultcode, string faultstring [, string faultactor [, mixed detail [, string faultname [, mixed headerfault]]]])
871871
SoapFault constructor */
872872
PHP_METHOD(SoapFault, SoapFault)
873873
{
@@ -919,7 +919,7 @@ PHP_METHOD(SoapFault, SoapFault)
919919
/* }}} */
920920

921921

922-
/* {{{ proto object SoapFault::SoapFault ( string faultcode, string faultstring [, string faultactor [, mixed detail [, string faultname [, mixed headerfault]]]])
922+
/* {{{ proto object SoapFault::SoapFault(string faultcode, string faultstring [, string faultactor [, mixed detail [, string faultname [, mixed headerfault]]]])
923923
SoapFault constructor */
924924
PHP_METHOD(SoapFault, __toString)
925925
{
@@ -971,7 +971,7 @@ PHP_METHOD(SoapFault, __toString)
971971
}
972972
/* }}} */
973973

974-
/* {{{ proto object SoapVar::SoapVar ( mixed data, int encoding [, string type_name [, string type_namespace [, string node_name [, string node_namespace]]]])
974+
/* {{{ proto object SoapVar::SoapVar(mixed data, int encoding [, string type_name [, string type_namespace [, string node_name [, string node_namespace]]]])
975975
SoapVar constructor */
976976
PHP_METHOD(SoapVar, SoapVar)
977977
{
@@ -1118,7 +1118,7 @@ static HashTable* soap_create_typemap(sdlPtr sdl, HashTable *ht)
11181118
}
11191119

11201120

1121-
/* {{{ proto object SoapServer::SoapServer ( mixed wsdl [, array options])
1121+
/* {{{ proto object SoapServer::SoapServer(mixed wsdl [, array options])
11221122
SoapServer constructor */
11231123
PHP_METHOD(SoapServer, SoapServer)
11241124
{
@@ -1246,7 +1246,7 @@ PHP_METHOD(SoapServer, SoapServer)
12461246
/* }}} */
12471247

12481248

1249-
/* {{{ proto object SoapServer::setPersistence ( int mode )
1249+
/* {{{ proto object SoapServer::setPersistence(int mode )
12501250
Sets persistence mode of SoapServer */
12511251
PHP_METHOD(SoapServer, setPersistence)
12521252
{
@@ -1493,7 +1493,7 @@ static void _soap_server_exception(soapServicePtr service, sdlFunctionPtr functi
14931493
}
14941494
/* }}} */
14951495

1496-
/* {{{ proto void SoapServer::handle ( [string soap_request])
1496+
/* {{{ proto void SoapServer::handle([string soap_request])
14971497
Handles a SOAP request */
14981498
PHP_METHOD(SoapServer, handle)
14991499
{
@@ -2266,7 +2266,7 @@ PHP_FUNCTION(is_soap_fault)
22662266

22672267
/* SoapClient functions */
22682268

2269-
/* {{{ proto object SoapClient::SoapClient ( mixed wsdl [, array options])
2269+
/* {{{ proto object SoapClient::SoapClient(mixed wsdl [, array options])
22702270
SoapClient constructor */
22712271
PHP_METHOD(SoapClient, SoapClient)
22722272
{
@@ -2810,7 +2810,7 @@ static void verify_soap_headers_array(HashTable *ht)
28102810
}
28112811

28122812

2813-
/* {{{ proto mixed SoapClient::__call ( string function_name, array arguments [, array options [, array input_headers [, array output_headers]]])
2813+
/* {{{ proto mixed SoapClient::__call(string function_name, array arguments [, array options [, array input_headers [, array output_headers]]])
28142814
Calls a SOAP function */
28152815
PHP_METHOD(SoapClient, __call)
28162816
{
@@ -2917,7 +2917,7 @@ PHP_METHOD(SoapClient, __call)
29172917
/* }}} */
29182918

29192919

2920-
/* {{{ proto array SoapClient::__getFunctions ( void )
2920+
/* {{{ proto array SoapClient::__getFunctions(void)
29212921
Returns list of SOAP functions */
29222922
PHP_METHOD(SoapClient, __getFunctions)
29232923
{
@@ -2944,7 +2944,7 @@ PHP_METHOD(SoapClient, __getFunctions)
29442944
/* }}} */
29452945

29462946

2947-
/* {{{ proto array SoapClient::__getTypes ( void )
2947+
/* {{{ proto array SoapClient::__getTypes(void)
29482948
Returns list of SOAP types */
29492949
PHP_METHOD(SoapClient, __getTypes)
29502950
{
@@ -2973,7 +2973,7 @@ PHP_METHOD(SoapClient, __getTypes)
29732973
/* }}} */
29742974

29752975

2976-
/* {{{ proto string SoapClient::__getLastRequest ( void )
2976+
/* {{{ proto string SoapClient::__getLastRequest(void)
29772977
Returns last SOAP request */
29782978
PHP_METHOD(SoapClient, __getLastRequest)
29792979
{
@@ -2992,7 +2992,7 @@ PHP_METHOD(SoapClient, __getLastRequest)
29922992
/* }}} */
29932993

29942994

2995-
/* {{{ proto object SoapClient::__getLastResponse ( void )
2995+
/* {{{ proto object SoapClient::__getLastResponse(void)
29962996
Returns last SOAP response */
29972997
PHP_METHOD(SoapClient, __getLastResponse)
29982998
{
@@ -3121,7 +3121,7 @@ PHP_METHOD(SoapClient, __setCookie)
31213121
}
31223122
/* }}} */
31233123

3124-
/* {{{ proto array SoapClient::__getCookies ( void )
3124+
/* {{{ proto array SoapClient::__getCookies(void)
31253125
Returns list of cookies */
31263126
PHP_METHOD(SoapClient, __getCookies)
31273127
{

0 commit comments

Comments
 (0)