diff options
author | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-02-25 19:51:39 -0300 |
---|---|---|
committer | Joe Watkins <krakjoe@php.net> | 2018-03-09 12:04:46 +0100 |
commit | 701437a94872853026c97b225f9882ed7fa3164c (patch) | |
tree | e52d683847f7251a9a024917694962959338ba8a /ext/curl | |
parent | acda5e084e1382256913b8e873e9017c5bd08e56 (diff) | |
download | php-git-701437a94872853026c97b225f9882ed7fa3164c.tar.gz |
Remove return types from some magic method in protos
__construct, __destruct, __wakeup does not have return types defined.
Diffstat (limited to 'ext/curl')
-rw-r--r-- | ext/curl/curl_file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/curl/curl_file.c b/ext/curl/curl_file.c index d30db86c54..8b476372fa 100644 --- a/ext/curl/curl_file.c +++ b/ext/curl/curl_file.c @@ -52,7 +52,7 @@ static void curlfile_ctor(INTERNAL_FUNCTION_PARAMETERS) } } -/* {{{ proto void CURLFile::__construct(string $name, [string $mimetype [, string $postfilename]]) +/* {{{ proto CURLFile::__construct(string $name, [string $mimetype [, string $postfilename]]) Create the CURLFile object */ ZEND_METHOD(CURLFile, __construct) { @@ -133,7 +133,7 @@ ZEND_METHOD(CURLFile, setPostFilename) } /* }}} */ -/* {{{ proto void CURLFile::__wakeup() +/* {{{ proto CURLFile::__wakeup() Unserialization handler */ ZEND_METHOD(CURLFile, __wakeup) { |