Commit 61ccabb6 authored by pookey's avatar pookey

minor fix to case statement in Doctrine::dump

parent 96635a7b
......@@ -472,7 +472,7 @@ final class Doctrine
}
$ret[] = ')';
break;
case 'object';
case 'object':
$ret[] = 'Object(' . get_class($var) . ')';
break;
default:
......
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