From: Alexandre Emsenhuber Date: Tue, 21 Sep 2010 20:11:40 +0000 (+0000) Subject: Fixed some doxygen warnings X-Git-Tag: 1.31.0-rc.0~34846 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=6aed2bff144927803337bb1cc32bbcb353f14f42;p=lhc%2Fweb%2Fwiklou.git Fixed some doxygen warnings --- diff --git a/includes/libs/CSSJanus.php b/includes/libs/CSSJanus.php index fc934d39eb..aa04bc49bf 100644 --- a/includes/libs/CSSJanus.php +++ b/includes/libs/CSSJanus.php @@ -117,9 +117,9 @@ class CSSJanus { /** * Transform an LTR stylesheet to RTL - * @param string $css Stylesheet to transform - * @param bool $swapLtrRtlInURL If true, swap 'ltr' and 'rtl' in URLs - * @param bool $swapLeftRightInURL If true, swap 'left' and 'right' in URLs + * @param $css String: stylesheet to transform + * @param $swapLtrRtlInURL Boolean: If true, swap 'ltr' and 'rtl' in URLs + * @param $swapLeftRightInURL Boolean: If true, swap 'left' and 'right' in URLs * @return Transformed stylesheet */ public static function transform( $css, $swapLtrRtlInURL = false, $swapLeftRightInURL = false ) { @@ -288,7 +288,7 @@ class CSSJanus_Tokenizer { /** * Replace all occurrences of $regex in $str with a token and remember * the original strings. - * @param $str string String to tokenize + * @param $str String to tokenize * @return string Tokenized string */ public function tokenize( $str ) { @@ -303,7 +303,7 @@ class CSSJanus_Tokenizer { /** * Replace tokens with their originals. If multiple strings were tokenized, it's important they be * detokenized in exactly the SAME ORDER. - * @param string $str String previously run through tokenize() + * @param $str String: previously run through tokenize() * @return string Original string */ public function detokenize( $str ) {