Commit a4a1a3f5 authored by romanb's avatar romanb

Started refactoring of the default hydrator, including some minor speed tweaks.

parent ea3935bc
This diff is collapsed.
......@@ -1612,7 +1612,7 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
{
if ($value === self::$_null) {
return self::$_null;
} elseif ($value === null) {
} else if ($value === null) {
return null;
} else {
$type = $this->getTypeOf($fieldName);
......
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