diff options
author | Antoine Musso <hashar@users.mediawiki.org> | 2012-02-13 16:35:59 +0000 |
---|---|---|
committer | Antoine Musso <hashar@users.mediawiki.org> | 2012-02-13 16:35:59 +0000 |
commit | 73247df2049d72da4e4460c14c0000eea3c8c0c6 (patch) | |
tree | cb41c4298de28f059e67a8dd7c98b501158feb1b /includes/StringUtils.php | |
parent | c55b05831f70377a81619fe6f11ecfb04cb689c4 (diff) | |
download | mediawikicore-73247df2049d72da4e4460c14c0000eea3c8c0c6.tar.gz mediawikicore-73247df2049d72da4e4460c14c0000eea3c8c0c6.zip |
Remove backslash from @return types
Ping r111103
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/111386
Diffstat (limited to 'includes/StringUtils.php')
-rw-r--r-- | includes/StringUtils.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/StringUtils.php b/includes/StringUtils.php index f405e616febb..f20c548d7d65 100644 --- a/includes/StringUtils.php +++ b/includes/StringUtils.php @@ -191,7 +191,7 @@ class StringUtils { * Returns an Iterator * @param $separator * @param $subject - * @return \ArrayIterator|\ExplodeIterator + * @return ArrayIterator|\ExplodeIterator */ static function explode( $separator, $subject ) { if ( substr_count( $subject, $separator ) > 1000 ) { |