From d47db8526bf7ca88552e6bdb1cb55b4ab7dfa421 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Sat, 3 Feb 2007 13:42:10 +0000 Subject: [PATCH] - Fix protos --- ext/phar/phar_object.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/phar/phar_object.c b/ext/phar/phar_object.c index 0e7aa8d291..74ca297c1f 100755 --- a/ext/phar/phar_object.c +++ b/ext/phar/phar_object.c @@ -62,7 +62,7 @@ PHP_METHOD(Phar, loadPhar) } } /* }}} */ -/* {{{ proto string apiVersion() +/* {{{ proto string Phar::apiVersion() * Returns the api version */ PHP_METHOD(Phar, apiVersion) { @@ -70,7 +70,7 @@ PHP_METHOD(Phar, apiVersion) } /* }}}*/ -/* {{{ proto bool canCompress() +/* {{{ proto bool Phar::canCompress() * Returns whether phar extension supports compression using zlib/bzip2 */ PHP_METHOD(Phar, canCompress) { @@ -82,7 +82,7 @@ PHP_METHOD(Phar, canCompress) } /* }}} */ -/* {{{ proto bool canWrite() +/* {{{ proto bool Phar::canWrite() * Returns whether phar extension supports writing and creating phars */ PHP_METHOD(Phar, canWrite) { -- 2.50.1