From: Alexandre Emsenhuber Date: Sat, 22 May 2010 16:14:28 +0000 (+0000) Subject: Fixed some doxygen warnings X-Git-Tag: 1.31.0-rc.0~36762 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=262cb09fe4011a3aa23867af6f315c86ceb95073;p=lhc%2Fweb%2Fwiklou.git Fixed some doxygen warnings --- diff --git a/includes/MacBinary.php b/includes/MacBinary.php index b5b11e6c6e..0c38a64110 100644 --- a/includes/MacBinary.php +++ b/includes/MacBinary.php @@ -35,7 +35,7 @@ class MacBinary { * The file must be seekable, such as local filesystem. * Remote URLs probably won't work. * - * @param string $filename + * @param $filename String */ function open( $filename ) { $this->valid = false; @@ -48,7 +48,8 @@ class MacBinary { /** * Does this appear to be a valid MacBinary archive? - * @return bool + * + * @return Boolean */ function isValid() { return $this->valid; @@ -56,7 +57,8 @@ class MacBinary { /** * Get length of data fork - * @return int + * + * @return Integer */ function dataForkLength() { return $this->dataLength; @@ -64,8 +66,9 @@ class MacBinary { /** * Copy the data fork to an external file or resource. - * @param resource $destination - * @return bool + * + * @param $destination Ressource + * @return Boolean */ function extractData( $destination ) { if( !$this->isValid() ) { @@ -173,9 +176,9 @@ class MacBinary { * with magic array thingy by Jim Van Verth. * http://search.cpan.org/~eryq/Convert-BinHex-1.119/lib/Convert/BinHex.pm * - * @param string $data - * @param int $seed - * @return int + * @param $data String + * @param $seed Integer + * @return Integer * @access private */ function calcCRC( $data, $seed = 0 ) { @@ -226,9 +229,9 @@ class MacBinary { } /** - * @param resource $destination - * @param int $bytesToCopy - * @return bool + * @param $destination Resource + * @param $bytesToCopy Integer + * @return Boolean * @access private */ function copyBytesTo( $destination, $bytesToCopy ) {