MINOR SS_Query properties now protected

This commit is contained in:
Daniel Hensby 2015-02-09 16:24:25 +00:00
parent 54227a5462
commit 9fd57ea4f6

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