diff options
author | Sam Reed <reedy@users.mediawiki.org> | 2012-02-09 19:30:01 +0000 |
---|---|---|
committer | Sam Reed <reedy@users.mediawiki.org> | 2012-02-09 19:30:01 +0000 |
commit | 7b25f8231f7c6fc2f069a68b3b579860563e8319 (patch) | |
tree | 066e66fc0d8aa8052acd7880eaccc020cf68f24d /includes/libs/CSSJanus.php | |
parent | 0a626db6e1e3d412b2bf96e7c1eca587b55bf678 (diff) | |
download | mediawikicore-7b25f8231f7c6fc2f069a68b3b579860563e8319.tar.gz mediawikicore-7b25f8231f7c6fc2f069a68b3b579860563e8319.zip |
Fixing some of the "@return true" or "@return false", need to be "@return bool" and then the metadata can say true if foo, false if bar
Other documentation improvements
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/111073
Diffstat (limited to 'includes/libs/CSSJanus.php')
-rw-r--r-- | includes/libs/CSSJanus.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/libs/CSSJanus.php b/includes/libs/CSSJanus.php index c8fc296b3248..792079a7297e 100644 --- a/includes/libs/CSSJanus.php +++ b/includes/libs/CSSJanus.php @@ -122,7 +122,7 @@ class CSSJanus { * @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 + * @return string Transformed stylesheet */ public static function transform( $css, $swapLtrRtlInURL = false, $swapLeftRightInURL = false ) { // We wrap tokens in ` , not ~ like the original implementation does. |