From: Gabriel Caruso Date: Wed, 7 Feb 2018 14:22:12 +0000 (-0200) Subject: Remove space between function name and open parentheses X-Git-Tag: php-7.3.0alpha1~468^2~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d9068e84b729ead6fced0d8e8ef08bfb3423d514;p=php Remove space between function name and open parentheses --- diff --git a/ext/gettext/gettext.c b/ext/gettext/gettext.c index a02d4b9145..9747502761 100644 --- a/ext/gettext/gettext.c +++ b/ext/gettext/gettext.c @@ -299,7 +299,7 @@ PHP_NAMED_FUNCTION(zif_ngettext) #endif #if HAVE_DNGETTEXT -/* {{{ proto string dngettext (string domain, string msgid1, string msgid2, int count) +/* {{{ proto string dngettext(string domain, string msgid1, string msgid2, int count) Plural version of dgettext() */ PHP_NAMED_FUNCTION(zif_dngettext) { @@ -325,7 +325,7 @@ PHP_NAMED_FUNCTION(zif_dngettext) #endif #if HAVE_DCNGETTEXT -/* {{{ proto string dcngettext (string domain, string msgid1, string msgid2, int n, int category) +/* {{{ proto string dcngettext(string domain, string msgid1, string msgid2, int n, int category) Plural version of dcgettext() */ PHP_NAMED_FUNCTION(zif_dcngettext) { diff --git a/ext/standard/filestat.c b/ext/standard/filestat.c index a405f0dfdc..e2b3245e97 100644 --- a/ext/standard/filestat.c +++ b/ext/standard/filestat.c @@ -546,7 +546,7 @@ static void php_do_chown(INTERNAL_FUNCTION_PARAMETERS, int do_lchown) /* {{{ */ /* }}} */ -/* {{{ proto bool chown (string filename, mixed user) +/* {{{ proto bool chown(string filename, mixed user) Change file owner */ PHP_FUNCTION(chown) { @@ -554,7 +554,7 @@ PHP_FUNCTION(chown) } /* }}} */ -/* {{{ proto bool chown (string filename, mixed user) +/* {{{ proto bool chown(string filename, mixed user) Change file owner */ #if HAVE_LCHOWN PHP_FUNCTION(lchown)