X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FStringUtils.php;h=fba31ea97611719e949797f22cce5544660aca9b;hb=8720241703a0ee05145bcbeed7b8f3384f5f4bc8;hp=3b500ae911abdb75d9b78e6abdc99584f6ea765e;hpb=4a75357363a0899bb994582a7704775690ea70e3;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/StringUtils.php b/includes/StringUtils.php index 3b500ae911..fba31ea976 100644 --- a/includes/StringUtils.php +++ b/includes/StringUtils.php @@ -213,7 +213,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 ) { @@ -424,7 +424,7 @@ class ReplacementArray { /** * An iterator which works exactly like: - * + * * foreach ( explode( $delim, $s ) as $element ) { * ... * }