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:
parent
26ebff9f10
commit
e58e2c12a7
1 changed files with 5 additions and 5 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue