Commit f0e65bd5 authored by Josh Fraser's avatar Josh Fraser

Calling reset should set values to null instead of unsetting them altogether

Gets rid of multiple PHP warning messages
parent 7420002d
...@@ -115,9 +115,9 @@ class MysqliDb ...@@ -115,9 +115,9 @@ class MysqliDb
$this->_orderBy = array(); $this->_orderBy = array();
$this->groupBy = array(); $this->groupBy = array();
$this->_bindParams = array(''); // Create the empty 0 index $this->_bindParams = array(''); // Create the empty 0 index
unset($this->_query); $this->_query = null;
unset($this->_whereTypeList); $this->_whereTypeList = null;
unset($this->_paramTypeList); $this->_paramTypeList = null;
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment