Commit:    17c6389e9e3e5f138872c696a80acc78e923da68
Author:    Stanislav Malyshev <s...@php.net>         Sun, 17 Feb 2013 13:33:48 
-0800
Parents:   0841eca580d7914eaadeb4270d48f72c5c42ba2c
Branches:  PHP-5.5 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=17c6389e9e3e5f138872c696a80acc78e923da68

Log:
fix protos

Changed paths:
  M  ext/curl/curl_file.c


Diff:
diff --git a/ext/curl/curl_file.c b/ext/curl/curl_file.c
index b7cc449..91dfd27 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 string CURLFile::__construct(string $name, [string $mimetype [, 
string $postfilename]])
+/* {{{ proto void CURLFile::__construct(string $name, [string $mimetype [, 
string $postfilename]])
    Create the CURLFile object */
 ZEND_METHOD(CURLFile, __construct)
 {
@@ -61,7 +61,7 @@ ZEND_METHOD(CURLFile, __construct)
 }
 /* }}} */
 
-/* {{{ proto string curl_file_create(string $name, [string $mimetype [, string 
$postfilename]])
+/* {{{ proto CURLFile curl_file_create(string $name, [string $mimetype [, 
string $postfilename]])
    Create the CURLFile object */
 PHP_FUNCTION(curl_file_create)
 {
@@ -117,7 +117,7 @@ ZEND_METHOD(CURLFile, getPostFilename)
 }
 /* }}} */
 
-/* {{{ proto string CURLFile::setMimeType(string $mime)
+/* {{{ proto void CURLFile::setMimeType(string $mime)
    Set MIME type */
 ZEND_METHOD(CURLFile, setMimeType)
 {
@@ -125,7 +125,7 @@ ZEND_METHOD(CURLFile, setMimeType)
 }
 /* }}} */
 
-/* {{{ proto string CURLFile::setPostFilename(string $name)
+/* {{{ proto void CURLFile::setPostFilename(string $name)
    Set file name for POST */
 ZEND_METHOD(CURLFile, setPostFilename)
 {
@@ -133,7 +133,7 @@ ZEND_METHOD(CURLFile, setPostFilename)
 }
 /* }}} */
 
-/* {{{ proto string CURLFile::__wakeup()
+/* {{{ proto void CURLFile::__wakeup()
    Unserialization handler */
 ZEND_METHOD(CURLFile, __wakeup)
 {


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to