From: Kunal Mehta Date: Thu, 29 Jan 2015 05:05:04 +0000 (-0800) Subject: ExplodeIterator: Set explicit visiblity on functions X-Git-Tag: 1.31.0-rc.0~12570 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=004f9dbbd76e256ff1906f0537b6782be86624c1;p=lhc%2Fweb%2Fwiklou.git ExplodeIterator: Set explicit visiblity on functions Change-Id: I407280a432098d13ad75ff2d3468aa6a7d653da7 --- diff --git a/includes/libs/ExplodeIterator.php b/includes/libs/ExplodeIterator.php index 64e33a471c..3b34d9bce0 100644 --- a/includes/libs/ExplodeIterator.php +++ b/includes/libs/ExplodeIterator.php @@ -48,7 +48,7 @@ class ExplodeIterator implements Iterator { * @param string $delim * @param string $subject */ - function __construct( $delim, $subject ) { + public function __construct( $delim, $subject ) { $this->subject = $subject; $this->delim = $delim; @@ -59,13 +59,13 @@ class ExplodeIterator implements Iterator { $this->rewind(); } - function rewind() { + public function rewind() { $this->curPos = 0; $this->endPos = strpos( $this->subject, $this->delim ); $this->refreshCurrent(); } - function refreshCurrent() { + public function refreshCurrent() { if ( $this->curPos === false ) { $this->current = false; } elseif ( $this->curPos >= $this->subjectLength ) { @@ -77,21 +77,21 @@ class ExplodeIterator implements Iterator { } } - function current() { + public function current() { return $this->current; } /** * @return int|bool Current position or boolean false if invalid */ - function key() { + public function key() { return $this->curPos; } /** * @return string */ - function next() { + public function next() { if ( $this->endPos === false ) { $this->curPos = false; } else { @@ -110,7 +110,7 @@ class ExplodeIterator implements Iterator { /** * @return bool */ - function valid() { + public function valid() { return $this->curPos !== false; } }