Set visibility on class properties of ExplodeIterator

Set to private. Only used in StringUtils::explode(). Searched
core and 600+ extensions.

Change-Id: Idbf981d1864f45bbb4adce08803dc693d9a5c200
This commit is contained in:
Siebrand Mazeland 2013-11-07 23:02:03 +01:00
parent 26ebff9f10
commit e58e2c12a7

View file

@ -525,19 +525,19 @@ class ReplacementArray {
*/
class ExplodeIterator implements Iterator {
// The subject string
var $subject, $subjectLength;
private $subject, $subjectLength;
// The delimiter
var $delim, $delimLength;
private $delim, $delimLength;
// The position of the start of the line
var $curPos;
private $curPos;
// The position after the end of the next delimiter
var $endPos;
private $endPos;
// The current token
var $current;
private $current;
/**
* Construct a DelimIterator