[ci skip] Remove space between function name and open parentheses

This commit is contained in:
Gabriel Caruso 2018-02-23 20:40:31 -03:00 committed by Christoph M. Becker
parent a2c7c46d5e
commit 5f54f48024
6 changed files with 36 additions and 36 deletions

View file

@ -1181,7 +1181,7 @@ static void php_add_field_properties(zval *value, const MYSQL_FIELD *field)
}
/* }}} */
/* {{{ proto mixed mysqli_fetch_field (object result)
/* {{{ proto mixed mysqli_fetch_field(object result)
Get column information from a result and return as an object */
PHP_FUNCTION(mysqli_fetch_field)
{
@ -1204,7 +1204,7 @@ PHP_FUNCTION(mysqli_fetch_field)
}
/* }}} */
/* {{{ proto mixed mysqli_fetch_fields (object result)
/* {{{ proto mixed mysqli_fetch_fields(object result)
Return array of objects containing field meta-data */
PHP_FUNCTION(mysqli_fetch_fields)
{
@ -1234,7 +1234,7 @@ PHP_FUNCTION(mysqli_fetch_fields)
}
/* }}} */
/* {{{ proto mixed mysqli_fetch_field_direct (object result, int offset)
/* {{{ proto mixed mysqli_fetch_field_direct(object result, int offset)
Fetch meta-data for a single field */
PHP_FUNCTION(mysqli_fetch_field_direct)
{
@ -1263,7 +1263,7 @@ PHP_FUNCTION(mysqli_fetch_field_direct)
}
/* }}} */
/* {{{ proto mixed mysqli_fetch_lengths (object result)
/* {{{ proto mixed mysqli_fetch_lengths(object result)
Get the length of each output in a result */
PHP_FUNCTION(mysqli_fetch_lengths)
{
@ -1295,7 +1295,7 @@ PHP_FUNCTION(mysqli_fetch_lengths)
}
/* }}} */
/* {{{ proto array mysqli_fetch_row (object result)
/* {{{ proto array mysqli_fetch_row(object result)
Get a result row as an enumerated array */
PHP_FUNCTION(mysqli_fetch_row)
{
@ -1396,7 +1396,7 @@ PHP_FUNCTION(mysqli_get_client_version)
}
/* }}} */
/* {{{ proto string mysqli_get_host_info (object link)
/* {{{ proto string mysqli_get_host_info(object link)
Get MySQL host info */
PHP_FUNCTION(mysqli_get_host_info)
{
@ -2669,7 +2669,7 @@ PHP_FUNCTION(mysqli_use_result)
}
/* }}} */
/* {{{ proto int mysqli_warning_count (object link)
/* {{{ proto int mysqli_warning_count(object link)
Return number of warnings from the last query for the given link */
PHP_FUNCTION(mysqli_warning_count)
{