mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #3869 from dhensby/pulls/query-access
MINOR SS_Query properties now protected
This commit is contained in:
commit
b48aea131b
@ -23,22 +23,22 @@ abstract class SS_Query implements Iterator {
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
private $currentRecord = null;
|
||||
|
||||
protected $currentRecord = null;
|
||||
|
||||
/**
|
||||
* The number of the current row in the interator.
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
private $rowNum = -1;
|
||||
|
||||
protected $rowNum = -1;
|
||||
|
||||
/**
|
||||
* Flag to keep track of whether iteration has begun, to prevent unnecessary
|
||||
* seeks.
|
||||
*
|
||||
* @var boolean
|
||||
*/
|
||||
private $queryHasBegun = false;
|
||||
protected $queryHasBegun = false;
|
||||
|
||||
/**
|
||||
* Return an array containing all the values from a specific column. If no
|
||||
|
Loading…
Reference in New Issue
Block a user