Merge pull request #3869 from dhensby/pulls/query-access

MINOR SS_Query properties now protected
This commit is contained in:
Will Morgan 2015-02-10 10:25:54 +00:00
commit b48aea131b

View File

@ -23,22 +23,22 @@ abstract class SS_Query implements Iterator {
* *
* @var array * @var array
*/ */
private $currentRecord = null; protected $currentRecord = null;
/** /**
* The number of the current row in the interator. * The number of the current row in the interator.
* *
* @var int * @var int
*/ */
private $rowNum = -1; protected $rowNum = -1;
/** /**
* Flag to keep track of whether iteration has begun, to prevent unnecessary * Flag to keep track of whether iteration has begun, to prevent unnecessary
* seeks. * seeks.
* *
* @var boolean * @var boolean
*/ */
private $queryHasBegun = false; protected $queryHasBegun = false;
/** /**
* Return an array containing all the values from a specific column. If no * Return an array containing all the values from a specific column. If no