From 9fd57ea4f61c387906622330e28638d1c300927a Mon Sep 17 00:00:00 2001 From: Daniel Hensby Date: Mon, 9 Feb 2015 16:24:25 +0000 Subject: [PATCH] MINOR SS_Query properties now protected --- model/Query.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/model/Query.php b/model/Query.php index 7765775e7..9a1067afc 100644 --- a/model/Query.php +++ b/model/Query.php @@ -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