diff --git a/lib/Doctrine/Cache/Array.php b/lib/Doctrine/Cache/Array.php index 1c3be50fb..92e635e95 100644 --- a/lib/Doctrine/Cache/Array.php +++ b/lib/Doctrine/Cache/Array.php @@ -52,7 +52,7 @@ class Doctrine_Cache_Array implements Countable, Doctrine_Cache_Interface if (isset($this->data[$id])) { return $this->data[$id]; } - return null; + return false; } /** * Test if a cache is available or not (for the given id) diff --git a/lib/Doctrine/Hydrate.php b/lib/Doctrine/Hydrate.php index afad6a9dd..a777f7274 100644 --- a/lib/Doctrine/Hydrate.php +++ b/lib/Doctrine/Hydrate.php @@ -786,10 +786,10 @@ class Doctrine_Hydrate extends Doctrine_Object implements Serializable // calculate hash for dql query $hash = md5($dql . var_export($params, true)); - $cached = ($this->_expireCache) ? null : $cacheDriver->fetch($hash); + $cached = ($this->_expireCache) ? false : $cacheDriver->fetch($hash); - if ($cached === null) { + if ($cached === false) { // cache miss $stmt = $this->_execute($params); $array = $this->parseData2($stmt, Doctrine::HYDRATE_ARRAY);