From fc0ca2a1b43c34dcb7b7683749515b5fe0b4dc2d Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Thu, 4 Mar 2010 22:23:21 +0000 Subject: [PATCH] Fixed some doxygen warnings --- includes/IEContentAnalyzer.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/includes/IEContentAnalyzer.php b/includes/IEContentAnalyzer.php index df4d36f052..a2ef1a0974 100644 --- a/includes/IEContentAnalyzer.php +++ b/includes/IEContentAnalyzer.php @@ -323,11 +323,11 @@ class IEContentAnalyzer { * Get the MIME types from getMimesFromData(), but convert the result from IE's * idiosyncratic private types into something other apps will understand. * - * @param string $fileName The file name (unused at present) - * @param string $chunk The first 256 bytes of the file - * @param string $proposed The MIME type proposed by the server + * @param $fileName String: the file name (unused at present) + * @param $chunk String: the first 256 bytes of the file + * @param $proposed String: the MIME type proposed by the server * - * @return array Map of IE version to detected mime type + * @return Array: map of IE version to detected mime type */ public function getRealMimesFromData( $fileName, $chunk, $proposed ) { $types = $this->getMimesFromData( $fileName, $chunk, $proposed ); @@ -359,11 +359,11 @@ class IEContentAnalyzer { /** * Get the untranslated MIME types for all known versions * - * @param string $fileName The file name (unused at present) - * @param string $chunk The first 256 bytes of the file - * @param string $proposed The MIME type proposed by the server + * @param $fileName String: the file name (unused at present) + * @param $chunk String: the first 256 bytes of the file + * @param $proposed String: the MIME type proposed by the server * - * @return array Map of IE version to detected mime type + * @return Array: map of IE version to detected mime type */ public function getMimesFromData( $fileName, $chunk, $proposed ) { $types = array(); -- 2.20.1