From 004f9dbbd76e256ff1906f0537b6782be86624c1 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Wed, 28 Jan 2015 21:05:04 -0800 Subject: [PATCH] ExplodeIterator: Set explicit visiblity on functions Change-Id: I407280a432098d13ad75ff2d3468aa6a7d653da7 --- includes/libs/ExplodeIterator.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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; } } -- 2.20.1