mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
MINOR SS_Query properties now protected
This commit is contained in:
parent
54227a5462
commit
9fd57ea4f6
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user