Eso no es un error, es el comportamiento esperado, Doctrine te regresa un Proxy.
Para acceder a los datos solo tienes que invocar el método que requieras del objeto que te regresa el repositorio
Código PHP:
Ver original$relationship = $this->emMy->getRepository('ABCIsystemBundle:AbcRelationship')->findOneBy(array('relationshipEn'=>'Mother')); $relationship->getCreatedDate();