aboutsummaryrefslogtreecommitdiffstats
path: root/includes/StringUtils.php
diff options
context:
space:
mode:
authorAntoine Musso <hashar@users.mediawiki.org>2012-02-13 16:35:59 +0000
committerAntoine Musso <hashar@users.mediawiki.org>2012-02-13 16:35:59 +0000
commit73247df2049d72da4e4460c14c0000eea3c8c0c6 (patch)
treecb41c4298de28f059e67a8dd7c98b501158feb1b /includes/StringUtils.php
parentc55b05831f70377a81619fe6f11ecfb04cb689c4 (diff)
downloadmediawikicore-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.php2
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 ) {